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-a454-4b06-9145-231ef36d807b",
  "edit_date": "2025-08-01 12:00:00",
  "form_uuid": "123e4567-56a4-4870-ab05-231ef1b7614b",
  "staff_uuid": "123e4567-9a91-489d-86d5-231ef5e2033b",
  "regarding_object_uuid": "123e4567-479a-42ab-8e22-231eff92093b",
  "timestamp": "2025-08-01 12:00:00",
  "form_by_staff_uuid": "123e4567-11af-4c66-bb51-231efaedc91b",
  "document_attachment_uuid": "123e4567-5136-4baf-9368-231ef60a7b8b",
  "asset_uuid": "123e4567-4617-4cf4-b2e7-231efb7b24bb"
}

Response

Success

errorCodenumber
messagestring

Example response

{
  "message": "OK"
}

Changes