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-3b7c-420b-8ce5-230b7b03951b",
  "edit_date": "2025-07-01 12:00:00",
  "form_uuid": "123e4567-8a2e-458f-be85-230b79dc267b",
  "staff_uuid": "123e4567-2168-44ee-a8e3-230b718204ab",
  "regarding_object_uuid": "123e4567-cdbb-4159-955e-230b7687cfcb",
  "timestamp": "2025-07-01 12:00:00",
  "form_by_staff_uuid": "123e4567-f700-4dc2-8946-230b7cdb46eb",
  "document_attachment_uuid": "123e4567-44d8-43ff-98c6-230b7b4993db",
  "asset_uuid": "123e4567-865b-4a3f-b74d-230b756abe1b"
}

Response

Success

errorCodenumber
messagestring

Example response

{
  "message": "OK"
}

Changes