Skip to main content
PATCH
/
v4
/
attendee
/
pending
/
{id}
Update pending attendee
curl --request PATCH \
  --url https://api.example.com/v4/attendee/pending/{id} \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "[email protected]",
  "notes": {},
  "companyId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "firstname": "<string>",
  "lastname": "<string>",
  "fullname": "<string>",
  "bringalongEmails": [
    "[email protected]"
  ],
  "phone": "<string>",
  "language": "en",
  "timezone": "<string>",
  "dataPolicyAccepted": true
}
'
123

Path Parameters

id
number
required

The unique identifier of the pending attendee record

Body

application/json

Updated attendee information

email
string<email>
required
notes
object
required

An object containing attendee form entries.

companyId
string<uuid>
required
firstname
string

Either fullname or firstname/lastname is required

lastname
string

Either fullname or firstname/lastname is required

fullname
string

Either fullname or firstname/lastname is required

bringalongEmails
string<email>[]

Additional attendee emails (max 5)

Maximum array length: 5
phone
string
language
enum<string>
Available options:
en,
de,
fr,
es,
no,
nl,
it,
pl,
sv,
tr,
da
timezone
string
dataPolicyAccepted
boolean

Response

200 - application/json

Pending attendee updated successfully

The response is of type number.