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-b679-4b03-b5f0-231cfba2130b",
  "edit_date": "2025-08-01 12:00:00",
  "form_uuid": "123e4567-e564-421d-b7da-231cf5ad25cb",
  "staff_uuid": "123e4567-2d05-4690-908e-231cf009aa8b",
  "regarding_object_uuid": "123e4567-4d7b-4908-9bba-231cf56e8f8b",
  "timestamp": "2025-08-01 12:00:00",
  "form_by_staff_uuid": "123e4567-dd19-4e99-9e4e-231cfdf4f17b",
  "document_attachment_uuid": "123e4567-95c2-4312-9cb6-231cf0edc79b",
  "asset_uuid": "123e4567-437f-4f14-9748-231cf921aa7b"
}

Response

Success

errorCodenumber
messagestring

Example response

{
  "message": "OK"
}

Changes