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-5876-4270-b3a8-2312699490db",
  "edit_date": "2025-08-01 12:00:00",
  "form_uuid": "123e4567-440b-4229-9f37-23126856b5eb",
  "staff_uuid": "123e4567-2188-46bd-8c68-23126bc6ca0b",
  "regarding_object_uuid": "123e4567-de85-4962-89f5-23126858921b",
  "timestamp": "2025-08-01 12:00:00",
  "form_by_staff_uuid": "123e4567-9d29-4222-9622-23126d14817b",
  "document_attachment_uuid": "123e4567-5d76-4ee6-8bb6-23126226cb4b",
  "asset_uuid": "123e4567-3ab4-45b4-88b7-2312663d600b"
}

Response

Success

errorCodenumber
messagestring

Example response

{
  "message": "OK"
}

Changes