Returns a list of all attendees for the authenticated event. The attendees are returned sorted by creation date, with the most recent appearing first.
A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
A cursor for use in pagination. `starting_after` is an object ID that defines your place in the list.
curl /api/v1/attendees \
-H "Authorization: Bearer YOUR_API_KEY"[
{
"id": "att-1",
"firstName": "Tony",
"lastName": "Stark",
"registrationId": "REG-001",
"email": "tony@stark.com",
"role": "VIP",
"category": "Internal",
"group": "Germany",
"status": "Checked In",
"gender_salutation": "Mr.",
"mobile_number": "+1-212-970-4133"
},
{
"id": "att-2",
"firstName": "Steve",
"lastName": "Rogers",
"registrationId": "REG-002",
"email": "captain@america.com",
"role": "Standard",
"category": "Internal",
"group": "Germany",
"subgroup": "1a",
"status": "Confirmed"
}
]