Response: 200 OK

A successful request returns 200 OK.

Body

Name
Required
Type
Description
access_token
true
string
JWT that can be used to provide authentication in API requests
expires_in
true
int
How long the access token is valid for (in seconds).
refresh_expires_in
true
int
How long the refresh token is valid for (in seconds).
token_type
false
string
Which type of token is returned by the endpoint
not-before-policy
false
int
From which time the token can be used (Epoch timestamp)
scope
false
string
Scopes available to token
{
    "access_token": "eyJ...81A",
    "expires_in": 300,
    "refresh_expires_in": 0,
    "token_type": "Bearer",
    "not-before-policy": 1669722088,
    "scope": "profile email"
}