Verify ID Token
GET/users/verify_token
Verify if the given jwt ID token was signed by the subject (user) in the payload
Request
Query Parameters
token stringrequired
JWT to verify
Responses
- 200
- 400
- 404
- 500
Success
- application/json
- Schema
- Example
Schema
dataobject
userId stringrequired
email stringrequired
name stringrequired
handle stringrequired
verified booleanrequired
profilePicture
object
150x150 string
480x480 string
1000x1000 string
sub stringrequired
iat stringrequired
{
"data": {
"userId": "string",
"email": "string",
"name": "string",
"handle": "string",
"verified": true,
"profilePicture": {
"150x150": "string",
"480x480": "string",
"1000x1000": "string"
},
"sub": "string",
"iat": "string"
}
}
Bad input
ID token not valid
Server error
Loading...