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-d925-49a5-94d3-231d2c357ecb",
  "edit_date": "2025-08-01 12:00:00",
  "form_uuid": "123e4567-0319-44ae-bb99-231d276a9b4b",
  "staff_uuid": "123e4567-2aa4-4546-b6fa-231d226d23fb",
  "regarding_object_uuid": "123e4567-9352-4951-8241-231d2d71a5ab",
  "timestamp": "2025-08-01 12:00:00",
  "form_by_staff_uuid": "123e4567-22b0-4ae5-b938-231d2c089c9b",
  "document_attachment_uuid": "123e4567-2455-48ed-81c7-231d29219f6b",
  "asset_uuid": "123e4567-798c-43f0-805a-231d2d51697b"
}

Response

Success

errorCodenumber
messagestring

Example response

{
  "message": "OK"
}

Changes