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-a4f5-47df-b0cd-230c474d41cb",
  "edit_date": "2025-07-01 12:00:00",
  "form_uuid": "123e4567-9ab7-4cdd-8aac-230c40b4669b",
  "staff_uuid": "123e4567-9441-4af3-a7db-230c4cdf44db",
  "regarding_object_uuid": "123e4567-cc84-456b-b412-230c43de148b",
  "timestamp": "2025-07-01 12:00:00",
  "form_by_staff_uuid": "123e4567-08cb-4f6c-95a3-230c499270bb",
  "document_attachment_uuid": "123e4567-d76a-4eff-a36f-230c4cb4865b",
  "asset_uuid": "123e4567-acb4-4dc3-ad75-230c4c63287b"
}

Response

Success

errorCodenumber
messagestring

Example response

{
  "message": "OK"
}

Changes