Skip to main content
PATCH
/
v4
/
appointment
/
{appointmentId}
/
notes
Update appointment notes
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>"
}
'

Authorizations

x-meetergo-api-user-id
string
header
required

User ID to act as when using API Key authentication (required with API Key)

Path Parameters

appointmentId
string
required

The unique identifier of the appointment

Body

application/json

Notes to update for the appointment

note
string
required

Response

200 - undefined