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-6939-4c51-95e5-230c4ace83ab",
  "edit_date": "2025-07-01 12:00:00",
  "form_uuid": "123e4567-ee8f-4802-8aba-230c4c2c987b",
  "staff_uuid": "123e4567-8d40-4ad6-912e-230c4eeff03b",
  "regarding_object_uuid": "123e4567-ae90-44c3-a9a1-230c4343812b",
  "timestamp": "2025-07-01 12:00:00",
  "form_by_staff_uuid": "123e4567-756f-4865-9d11-230c47a2ee3b",
  "document_attachment_uuid": "123e4567-d253-4ec4-b091-230c4e4e9d8b",
  "asset_uuid": "123e4567-3dc6-4c94-a748-230c4a7872bb"
}

Response

Success

errorCodenumber
messagestring

Example response

{
  "message": "OK"
}

Changes