Introspect OAuth 2.0 Token
curl --request POST \
--url https://{cluster}.voucherify.io/v1/oauth/introspect \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'X-App-Id: <api-key>' \
--header 'X-App-Token: <api-key>' \
--data access_token=1ABCde2FGHijKl3m4NO5pqR6STUv7wxYzAbc8dE90FgH1IJkLm
{
"access_token": "1ABCde2FGHijKl3m4NO5pqR6STUv7wxYzAbc8dE90FgH1IJkLm",
"client_id": "a1Bcdefg2HI3Jkl4m5nOP",
"expires_at": 1738945086,
"expires_in": 555,
"scope": "api",
"token_type": "Bearer",
"active": true
}