POST
/
forms
/
{formUUID}
/
responses
Create form response
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
}

Headers

Authorization
string
required

Bearer Token

Path Parameters

projectUUID
string
required

Project UUID

formUUID
string
required

Form UUID

Body

application/json

Request body to create a new form response

The body is of type object.

Response

201
application/json

Form response details

The response is of type object.