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-a6a1-4594-bcf5-230fe759e42b",
  "edit_date": "2025-07-01 12:00:00",
  "form_uuid": "123e4567-083b-4d6d-be57-230fe5dedb7b",
  "staff_uuid": "123e4567-6dcf-465e-b21d-230fe95a108b",
  "regarding_object_uuid": "123e4567-e1f8-44f5-8e6b-230fe48e5f5b",
  "timestamp": "2025-07-01 12:00:00",
  "form_by_staff_uuid": "123e4567-f321-48b3-a9b6-230fe516ed8b",
  "document_attachment_uuid": "123e4567-12ce-4fd6-93c7-230fee727f6b",
  "asset_uuid": "123e4567-5f1c-4fa5-8b58-230fe37d912b"
}

Response

Success

errorCodenumber
messagestring

Example response

{
  "message": "OK"
}

Changes