AUTH.VERIFY_ID_TOKEN
POST
To verify an id token. This action can be used by admin.
Request
- application/json
Body
action stringrequired
Default value: auth.verify_id_token
The action
id_token stringrequired
JWT ID Token
aud string
Responses
- 200
Verify id_token response
- application/json
- Schema
- Example (from schema)
Schema
_userkey string
The user's Key
email string
The user's email
email_verified boolean
Boolean indicating email is verified
display_name string
The full display name
photo_url string
The photo URL
username string
The username
aud string
The 'aud' associated to this authentication
roles string[]
Array of roles for this authentication
auth_types string[]
Array of auth_types for this authentication
{
"_userkey": "string",
"email": "string",
"email_verified": true,
"display_name": "string",
"photo_url": "string",
"username": "string",
"aud": "string",
"roles": [
"string"
],
"auth_types": [
"string"
]
}
Loading...