Updates or adds notes to a specific appointment
curl --request PATCH \
--url https://api.example.com/v4/appointment/{appointmentId}/notes \
--header 'Content-Type: application/json' \
--header 'x-meetergo-api-user-id: <api-key>' \
--data '
{
"note": "<string>"
}
'User ID to act as when using API Key authentication (required with API Key)
The unique identifier of the appointment
Notes to update for the appointment
curl --request PATCH \
--url https://api.example.com/v4/appointment/{appointmentId}/notes \
--header 'Content-Type: application/json' \
--header 'x-meetergo-api-user-id: <api-key>' \
--data '
{
"note": "<string>"
}
'