About paginationAll POST endpoints in this API use cursor-based pagination. Your request body must include either a
ResetCursor object (for your first request) or the cursor value from a previous response (for all subsequent requests).The cursor is a persistent checkpoint that marks your exact position in the event stream and remains valid across API sessions. You should store the cursor you receive in each response so you can always resume from where you left off without missing any events. Learn more about how cursors work.GET /api/v2/auth/introspect
Parameters
No parameters.Requests
Use the full URL of theintrospect endpoint with your bearer token and the required request headers. A GET request doesn’t include a body, so the content type header isn’t needed.
For example:
Responses
A successful200 response returns an Introspection object with information about the token.
- Example introspection response
- IntrospectionV2 object schema
POST /api/v2/auditevents
auditevents feature. You can make an introspection call to the API to verify if your token is authorized to access audit events.
Parameters
No parameters.Requests
Use the full URL of theauditevents endpoint with your bearer token and the required request headers. You must include a ResetCursor object or the cursor from a previous response in the request body.
- Example audit events request with a reset cursor
- Example audit events request with a continuing cursor
Responses
A successful200 response returns an AuditEventItemsV2 object wrapping cursor properties and an array of AuditEventV2 objects.
The included cursor is a persistent checkpoint that marks your current position in the event stream. Save this value and include it in the request body of your next call to this endpoint. Learn more about how cursors work.
- Example audit event response
- AuditEventV2 object schemas
POST /api/v2/itemusages
itemusages feature. You can make an introspection call to the API to verify if your token is authorized to access sign-in events.
Parameters
No parameters.Requests
Use the full URL of theitemusages endpoint with your bearer token and the required request headers. You must include a ResetCursor object or the cursor from a previous response in the request body.
- Example item usage request with a reset cursor
- Example item usage request with a continuing cursor
Responses
A successful200 response returns an ItemUsageItemsV2 object wrapping cursor properties and an array of ItemUsageV2 objects.
The included cursor is a persistent checkpoint that marks your current position in the event stream. Save this value and include it in the request body of your next call to this endpoint. Learn more about how cursors work.
- Example item usage response
- ItemUsageV2 object schemas
POST /api/v2/signinattempts
signinattempts feature. You can make an introspection call to the API to verify if your token is authorized to access sign-in events.
Parameters
No parameters.Requests
Use the full URL of thesigninattempts endpoint with your bearer token and the required request headers. You must include a ResetCursor object or the cursor from a previous response in the request body.
- Example request with a reset cursor
- Example request with a continuing cursor
Responses
A successful200 response returns a SignInAttemptItemsV2 object wrapping cursor properties and an array of SignInAttemptV2 objects.
The included cursor is a persistent checkpoint that marks your current position in the event stream. Save this value and include it in the request body of your next call to this endpoint. Learn more about how cursors work.
- Example sign-in attempt response
- SignInAttemptsV2 object schemas
ErrorResponse object
- Example error response
- ErrorResponse object schema