Security
x-api-key and a-api-key
ISO 8601 local datetime in the tenant's timezone.
Example:"2026-01-01T12:05:30"
PATCH
curl -i -X PATCH \
'https://api.pracsuite.com/v1/note/{appointment_id}' \
-H 'Content-Type: application/json' \
-H 'a-api-key: YOUR_API_KEY_HERE' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '{
"app_time": "2026-01-01T12:05:30",
"practitioner_id": 0,
"business_id": 0,
"duration": 5,
"description": "string",
"font_colour": "#000000",
"bg_colour": "#FFD700",
"notes": "string",
"column_number": 1,
"width": 1,
"resource_ids": [
1,
2
]
}'Successful
ISO 8601 local datetime in the tenant's timezone.
Example:"2026-01-01T12:05:30"
RFC 3339 UTC date-time (Z) with microsecond precision.
Example:"2020-09-12T11:09:42.687393Z"
RFC 3339 UTC date-time (Z) with microsecond precision.
Example:"2020-09-12T11:09:42.687393Z"
Response
{ "row_num": 0, "total_rows": 0, "links": { "self": "https://api.pracsuite.com/v1/note/1", "resources": "https://api.pracsuite.com/v1/note/1/resource" }, "appointment_id": 0, "app_time": "2026-01-01T12:05:30", "practitioner_id": 0, "business_id": 0, "duration": 5, "column_number": 1, "width": 1, "category": "Note", "notes": "string", "description": "string", "created": "2020-09-12T11:09:42.687393Z", "modified": "2020-09-12T11:09:42.687393Z", "font_colour": "#000000", "bg_colour": "#FFD700", "resource_ids": [ 0 ] }