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-e369-4ca8-8bdc-231b2a6695db",
  "edit_date": "2025-08-01 12:00:00",
  "form_uuid": "123e4567-4fd5-454e-943a-231b2b11256b",
  "staff_uuid": "123e4567-6756-4a77-9502-231b26fc66ab",
  "regarding_object_uuid": "123e4567-bbb8-46e0-ae73-231b2382de6b",
  "timestamp": "2025-08-01 12:00:00",
  "form_by_staff_uuid": "123e4567-ec8c-49fa-a299-231b2683524b",
  "document_attachment_uuid": "123e4567-84f0-4532-8503-231b299ed78b",
  "asset_uuid": "123e4567-c6da-4bbb-8c52-231b25539cab"
}

Response

Success

errorCodenumber
messagestring

Example response

{
  "message": "OK"
}

Changes