Adds additional guest email addresses to an appointment’s attendee list
curl --request PATCH \
--url https://api.example.com/v4/appointment/{appointmentId}/guest \
--header 'Content-Type: application/json' \
--header 'x-meetergo-api-user-id: <api-key>' \
--data '
{
"attendeeId": "<string>",
"email": "jsmith@example.com"
}
'User ID to act as when using API Key authentication (required with API Key)
The unique identifier of the appointment
Guest email addresses to add to the appointment
curl --request PATCH \
--url https://api.example.com/v4/appointment/{appointmentId}/guest \
--header 'Content-Type: application/json' \
--header 'x-meetergo-api-user-id: <api-key>' \
--data '
{
"attendeeId": "<string>",
"email": "jsmith@example.com"
}
'