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-a468-4275-bfaa-231efa51881b",
  "edit_date": "2025-08-01 12:00:00",
  "form_uuid": "123e4567-faa0-407f-b84a-231efa051a4b",
  "staff_uuid": "123e4567-3147-4049-8a39-231efa09729b",
  "regarding_object_uuid": "123e4567-a608-45f8-a0a6-231efdbe37eb",
  "timestamp": "2025-08-01 12:00:00",
  "form_by_staff_uuid": "123e4567-aaf9-422b-aeb8-231ef9009e6b",
  "document_attachment_uuid": "123e4567-94bc-465c-831c-231efd31584b",
  "asset_uuid": "123e4567-a394-482e-97ee-231ef3c9681b"
}

Response

Success

errorCodenumber
messagestring

Example response

{
  "message": "OK"
}

Changes