Store a new form response for a specific form
cURL
curl --request POST \ --url https://api.fluxend.app/forms/{formUUID}/responses \ --header 'Authorization: <authorization>' \ --header 'Content-Type: application/json' \ --data '{ "projectUUID": "<string>", "response": {} }'
{ "content": { "formUuid": "<string>", "responses": [ { "createdAt": "<string>", "formFieldUuid": "<string>", "formResponseUuid": "<string>", "updatedAt": "<string>", "uuid": "<string>", "value": "<string>" } ], "uuid": "<string>" }, "errors": [ "<string>" ], "metadata": "<any>", "success": true }
Bearer Token
Project UUID
Form UUID
Request body to create a new form response
The body is of type object.
object
Form response details
The response is of type object.