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-6202-46bd-86ac-231109b62e7b",
  "edit_date": "2025-07-01 12:00:00",
  "form_uuid": "123e4567-274e-4ec4-8cc4-23110ff71adb",
  "staff_uuid": "123e4567-6e10-42d7-94cc-23110dc85b8b",
  "regarding_object_uuid": "123e4567-19af-474e-83ef-231104fe924b",
  "timestamp": "2025-07-01 12:00:00",
  "form_by_staff_uuid": "123e4567-9a95-4663-bc09-23110e7baadb",
  "document_attachment_uuid": "123e4567-eb56-4f49-8926-23110044dbdb",
  "asset_uuid": "123e4567-4ef3-4b7c-9328-23110d1ca3eb"
}

Response

Success

errorCodenumber
messagestring

Example response

{
  "message": "OK"
}

Changes