GET
/api/v1/attendees

List all attendees

Returns a list of all attendees for the authenticated event. The attendees are returned sorted by creation date, with the most recent appearing first.

Parameters

limit integer

A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

starting_after string

A cursor for use in pagination. `starting_after` is an object ID that defines your place in the list.

Example Request

curl /api/v1/attendees \
  -H "Authorization: Bearer YOUR_API_KEY"
Test Request
Enter your API key to test this endpoint.

Example Response

[
  {
    "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"
  }
]