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-e81c-42e3-883f-23184da922ab",
  "edit_date": "2025-08-01 12:00:00",
  "form_uuid": "123e4567-81c9-4ec8-8b74-23184950285b",
  "staff_uuid": "123e4567-48df-45dc-b17d-2318473f5fab",
  "regarding_object_uuid": "123e4567-ec42-486b-8ca0-231848701c6b",
  "timestamp": "2025-08-01 12:00:00",
  "form_by_staff_uuid": "123e4567-d016-4843-be68-2318414eb5db",
  "document_attachment_uuid": "123e4567-d520-4055-8a6e-231848ac8bfb",
  "asset_uuid": "123e4567-d306-406b-9371-2318482b7a7b"
}

Response

Success

errorCodenumber
messagestring

Example response

{
  "message": "OK"
}

Changes