Return claims about the authenticated end-user by sending a Bearer access token as the form-encoded access_token body parameter. The token must be issued with the openid scope. For more information, see the OIDC UserInfo spec. The set of claims returned is determined by the granted scopes and the claims.userinfo request parameter from the original authorization request.
- Sandbox environmenthttps://api.sbx.transmitsecurity.io/cis/oidc/me
- US production environmenthttps://api.transmitsecurity.io/cis/oidc/me
- EU production environmenthttps://api.eu.transmitsecurity.io/cis/oidc/me
- CA production environmenthttps://api.ca.transmitsecurity.io/cis/oidc/me
- AU production environmenthttps://api.au.transmitsecurity.io/cis/oidc/me
- JP production environmenthttps://api.gasne1-ts01.transmitsecurity.io/cis/oidc/me
curl -i -X POST \
https://api.sbx.transmitsecurity.io/cis/oidc/me \
-H 'Content-Type: application/x-www-form-urlencoded' \
-d access_token=stringClaims about the authenticated end-user. The response always includes the baseline claims (see the response schema) and any claim requested via claims.userinfo on the originating authorization request is attached to the same JSON object.
Whether this user was just created during the originating authentication flow.
Example:true
Response
{ "sub": "string", "tid": "string", "email": "string", "groups": [], "new_user": true, "webauthn": {} }