Get Contacts in Invitation List
Retrieves all contacts belonging to an invitation list. Results are paginated and can be filtered by contact_id or status, and sorted by contact_id, status, or event_id. Use expand=contact to include the full contact record for each entry.
Authorizations
OAuth 2.0 bearer token obtained from POST /oauth2/token. Tokens expire after 30 minutes. Include in the Authorization header as Bearer {access_token}.
Path Parameters
integer - required - The ID of the invitation list
34
Query Parameters
string - optional - Comma-separated list of fields to return. Allowed values: contact_id, status. Defaults to contact_id,status.
"contact_id,status"
string - optional - Filter conditions to narrow the results. Valid operators are =, !=, >=, <=, >, <, contains, beginswith, endswith
"id>123"
integer - optional - The page of results you want to view
"1"
integer - optional - The number of results per page (to a max of 1000)
"20"
string - optional - Sort field. Allowed values: contact_id, status, event_id. Prefix with - for descending order (e.g. -contact_id). Defaults to contact_id ascending.
"contact_id"
string - optional - Comma-separated list of related objects to embed. Allowed value: contact (includes the full contact record).
"contact"