Get All Scans
Retrieves all session check-in scan records for an event. Scans are created when a registrant’s badge or QR code is scanned at a session entrance, providing a timestamped record of physical check-in. Requires the event_id query parameter.
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}.
Query Parameters
integer - required - The ID of the event you want to retrieve scans for
1
integer - optional - Optionally see only the scans for one session
""
integer - optional - The ID of the registrant the scan is associated with
""
string - optional - Comma separated list of fields you want to return
"id,event_id,registrant_id,typecreated_by,created_at,scan_id"
integer - optional - The page of results you want to view
"1"
integer - optional - The number of results per page (to a max of 200)
"5"
string - optional - Filter conditions to narrow the results. Valid operators are =, !=, >=, <=, >, <, contains, beginswith, endswith
"id>123"
string - optional - Sort the results (add - in front for opposite sort direction, e.g. "-id")
Comma-separated list of IDs to retrieve. When provided, only records matching these IDs are returned. All values must be positive integers. Maximum 100 IDs per request.