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 can be used to fetch more data or continue the polling process.
- 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 can be used to fetch more data or continue the polling process.
The response also includes a cursor to continue fetching more data or to use the next time you make a request.
- 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 can be used to fetch more data or continue the polling process.
- Example sign-in attempt response
- SignInAttemptsV2 object schemas
ErrorResponse object
- Example error response
- ErrorResponse object schema