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-1f0c-40e5-baf4-230fed1c492b",
  "edit_date": "2025-07-01 12:00:00",
  "form_uuid": "123e4567-822e-4582-a8f7-230fe084621b",
  "staff_uuid": "123e4567-f8e9-4a27-82f8-230fe6ad7d2b",
  "regarding_object_uuid": "123e4567-2b23-445a-a1c2-230fea96f15b",
  "timestamp": "2025-07-01 12:00:00",
  "form_by_staff_uuid": "123e4567-b070-4b8d-b144-230fed5857fb",
  "document_attachment_uuid": "123e4567-039e-4d91-9894-230fea3054bb",
  "asset_uuid": "123e4567-67b2-49d6-b813-230fe07916db"
}

Response

Success

errorCodenumber
messagestring

Example response

{
  "message": "OK"
}

Changes