Skip to main content
PATCH
/
v4
/
attendee
/
{attendeeId}
/
notes
Update attendee notes
curl --request PATCH \
  --url https://api.example.com/v4/attendee/{attendeeId}/notes \
  --header 'Content-Type: application/json' \
  --header 'x-meetergo-api-user-id: <api-key>' \
  --data '
{
  "company": "New Company Name",
  "phone": "+1234567890"
}
'

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

attendeeId
string
required

The unique identifier of the attendee whose notes to update

Body

application/json

Key-value pairs of notes to update. Must have the same keys as existing notes.

{key}
string

Response

200 - undefined