Form Responses

Retrieve a Form Response

OAuth Scope

This endpoint requires the following OAuth scope read_forms.

get/formresponse/{uuid}.json

Path parameters

uuidstring uuid required

UUID of the Form Response

Response

Form Response record retrieved successfully

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 response

{
  "uuid": "123e4567-18cd-4ac0-9a45-231fe9f9ab1b",
  "edit_date": "2025-08-01 12:00:00",
  "form_uuid": "123e4567-e984-44b7-bab7-231fe768de9b",
  "staff_uuid": "123e4567-2365-4d26-adef-231fe0553aab",
  "regarding_object_uuid": "123e4567-64c5-4808-bcfc-231fe0b583db",
  "timestamp": "2025-08-01 12:00:00",
  "form_by_staff_uuid": "123e4567-ce88-40c3-9a43-231fe5e100ab",
  "document_attachment_uuid": "123e4567-4076-4e55-9665-231feec6803b",
  "asset_uuid": "123e4567-989d-443b-a45c-231fed1b70db"
}

Changes