Skip to main content
POST
/
api
/
v1
/
login
/
test-token
Test Token
curl --request POST \
  --url https://api.example.com/api/v1/login/test-token \
  --header 'Authorization: Bearer <token>'
{
  "email": "jsmith@example.com",
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "is_active": true,
  "is_superuser": false,
  "is_paid": false,
  "full_name": "<string>",
  "role": "standard",
  "created_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Response

200 - application/json

Successful Response

email
string<email>
required
Maximum string length: 255
id
string<uuid>
required
is_active
boolean
default:true
is_superuser
boolean
default:false
is_paid
boolean
default:false
full_name
string | null
Maximum string length: 255
role
enum<string>
default:standard

Role controls non-admin account policies

Available options:
standard,
sandbox
created_at
string<date-time> | null
Last modified on May 25, 2026