curl --request POST \
--url https://public-api.stora.co/oauth2/introspect \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"token": "v88ZtIS248uE3c7ZhDdEbOfZkHSO69BxBhzPmEeCx2I"
}
'{
"active": true,
"scope": "public.contact:read public.contact:write",
"client_id": "ei5bQqk_qUqan8MYMarc2-Eqb48vdB-oc_qBBUjG7co",
"token_type": "Bearer",
"exp": 3480477720,
"iat": 1740235260
}Introspect an OAuth 2 Access Token using another Access Token.
curl --request POST \
--url https://public-api.stora.co/oauth2/introspect \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"token": "v88ZtIS248uE3c7ZhDdEbOfZkHSO69BxBhzPmEeCx2I"
}
'{
"active": true,
"scope": "public.contact:read public.contact:write",
"client_id": "ei5bQqk_qUqan8MYMarc2-Eqb48vdB-oc_qBBUjG7co",
"token_type": "Bearer",
"exp": 3480477720,
"iat": 1740235260
}Bearer Token necessary to use API
OAuth 2 Introspect Request
OAuth 2 Access Token.
Was this page helpful?