{{base_url}}/registration/{organization_id}/{event_id}page (number, optional) — Page number to fetch. Defaults to 1.per_page (number, optional) — Items per page. Common values: 5, 20. Defaults to 5.persona (string, optional) — Filter by user persona. Example: visitor.barcode (string, optional) — Filter by barcode. Example: 0IG6XSAD.Accept: application/jsonAccept-Encoding: application/json{{token}} if your API requires Bearer or API key auth. Ensure the active environment (e.g., Sandbox or Live) has this value set.{{base_url}} — Base host for the API, provided by the active environment.persona and barcode to narrow results.per_page during development to limit payload size.GET {{base_url}}registration/{organization_id}/{event_id}?page=1&per_page=5 — First page with 5 items.GET {{base_url}}registration/{organization_id}/{event_id}?page=3&per_page=20&persona=visitor — Third page, filtered by persona.GET {{base_url}}registration/{organization_id}/{event_id}?barcode=34DD490 — Filter by person barcodecurl --location --globoff --request GET '{{baseUrl}}/registration//?page=1&per_page=5' \
--header 'Accept-Encoding: application/json' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{}'{}