Skip to main content
PATCH
/
v4
/
appointment
/
{appointmentId}
/
guest
Add guest emails to 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": "[email protected]"
}
'

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

Guest email addresses to add to the appointment

attendeeId
string
required
email
string<email>
required

Response

200 - undefined