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-ad60-4df1-abc5-230fec51fd4b",
  "edit_date": "2025-07-01 12:00:00",
  "form_uuid": "123e4567-d3f0-443d-b161-230fe16cea4b",
  "staff_uuid": "123e4567-bc9d-4784-a6fc-230fe3e6565b",
  "regarding_object_uuid": "123e4567-0b7b-4e78-a942-230fe8e5b11b",
  "timestamp": "2025-07-01 12:00:00",
  "form_by_staff_uuid": "123e4567-77df-4d49-8e6e-230fedf9c94b",
  "document_attachment_uuid": "123e4567-04cd-4fa2-abe7-230fe307a05b",
  "asset_uuid": "123e4567-d00b-4e17-924b-230feb357cfb"
}

Response

Success

errorCodenumber
messagestring

Example response

{
  "message": "OK"
}

Changes