PluralBuddyPluralBuddy
API ReferencesAuthentication

Introspect an OAuth2 access or refresh token

POST
/auth/oauth2/introspect

Authorization

bearerAuth
AuthorizationBearer <token>

Bearer token authentication

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/auth/oauth2/introspect" \  -H "Content-Type: application/json" \  -d '{    "token": "string"  }'
{  "active": true,  "scope": "string",  "client_id": "string",  "username": "string",  "token_type": "string",  "exp": 0,  "iat": 0,  "nbf": 0,  "sub": "string",  "aud": "string",  "iss": "string",  "jti": "string"}

How is this guide?