Skip to main content
POST
Issue an access token

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Headers

x-api-version
string
required

Selects the partner API version to use, in semver form x.y.z (e.g. 2.0.0). Required.

Response

Access token issued.

access_token
string
required

Signed ES256 JWT.

Example:

"eyJhbGciOiJFUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJhcGkta2V5In0.sig"

expires_in
integer<int64>
required

Lifetime of the token in seconds.

Example:

3600

token_type
string
required

Always Bearer.

Example:

"Bearer"