Get Registration Audit
Returns a time-bounded audit log of registrant status changes for an event. Each record captures the registrant’s status at a point in time, along with their group, full name, email, and session selections. Requires both event_id and start_time query parameters. Supports up to 1,000 results per page. Use status_mode=current to return the current registration status snapshot instead of the audit trail.
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 audit records for
1
string - required - ISO 8601 datetime (YYYY-MM-DD HH:MM:SS). Returns records updated at or after this timestamp. Must be provided to prevent unbounded queries.
"2024-01-01 00:00:00"
string - optional - ISO 8601 datetime. Returns records updated before this timestamp.
"2024-12-31 23:59:59"
string - optional - Comma separated list of fields you want to return. The registrant_id field is always returned.
"registrant_id,group_id,full_name,email,registration_status,session_ids,updated_at"
string - optional - Controls what registration status data is returned. 'current' returns the present-day status snapshot; 'combined' merges audit and current status. Defaults to audit mode when omitted.
current, combined "current"
integer - optional - The page of results you want to view
"1"
integer - optional - The number of results per page (to a max of 1000)
"100"