Notes

Create a new Note

OAuth Scope

This endpoint requires the following OAuth scope publish_job_notes.

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/note.json

Request body

uuidstring uuid

Unique identifier for this record

related_objectstring
related_object_uuidstring uuid
notestring
action_requiredstring
action_completed_by_staff_uuidstring uuid
edit_by_staff_uuidstring uuid

UUID of Staff Member who last modified record

create_datestring

Timestamp at which record was last modified

Example request

{
  "uuid": "123e4567-72ca-42a2-9003-2348261850ab",
  "related_object_uuid": "123e4567-4975-417e-b66a-234823f8f1bb",
  "action_completed_by_staff_uuid": "123e4567-0b9c-4433-bec1-23482ad44b5b",
  "edit_by_staff_uuid": "123e4567-3788-4a45-8c69-23482e36df7b",
  "create_date": "2025-09-01 12:00:00"
}

Response

Success

errorCodenumber
messagestring

Example response

{
  "message": "OK"
}

Changes