Form Responses

Create a new Form Response

Record UUID

UUID is optional for record creation. If no UUID is supplied, a UUID will be automatically generated for the new record and returned in the x-record-uuid response header.

post/formresponse.json

Request body

uuidstring uuid

Unique identifier for this record

active0 | 1

Record active/deleted flag. Valid values are [0,1]

edit_datestring

Timestamp at which record was last modified

form_uuidstring uuid
staff_uuidstring uuid
regarding_objectstring
regarding_object_uuidstring uuid
field_datastring
timestampstring
form_by_staff_uuidstring uuid
document_attachment_uuidstring uuid
asset_uuidstring uuid

Example request

{
  "uuid": "123e4567-7138-4598-85b0-2313fe2fb1cb",
  "edit_date": "2025-08-01 12:00:00",
  "form_uuid": "123e4567-fb7e-4314-98d9-2313f93a7cdb",
  "staff_uuid": "123e4567-b74d-4b71-b371-2313fcacd85b",
  "regarding_object_uuid": "123e4567-7fcf-4285-9d93-2313f8c5a55b",
  "timestamp": "2025-08-01 12:00:00",
  "form_by_staff_uuid": "123e4567-0900-410f-9306-2313f7d2f2eb",
  "document_attachment_uuid": "123e4567-7705-4f5c-9b1e-2313f5eed51b",
  "asset_uuid": "123e4567-24bb-41c5-8924-2313f002e2db"
}

Response

Success

errorCodenumber
messagestring

Example response

{
  "message": "OK"
}

Changes