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-bc69-48bb-abef-230b7169338b",
  "edit_date": "2025-07-01 12:00:00",
  "form_uuid": "123e4567-b4c3-4b1d-8fce-230b74f75c1b",
  "staff_uuid": "123e4567-78fa-4a11-8229-230b7f14478b",
  "regarding_object_uuid": "123e4567-d9fb-45e7-abf4-230b7fa88c4b",
  "timestamp": "2025-07-01 12:00:00",
  "form_by_staff_uuid": "123e4567-7ff6-4e24-85e6-230b7828ab4b",
  "document_attachment_uuid": "123e4567-ab54-4174-9957-230b73044b9b",
  "asset_uuid": "123e4567-bffb-4265-b99a-230b729ee5db"
}

Response

Success

errorCodenumber
messagestring

Example response

{
  "message": "OK"
}

Changes