latestSwagger 2.02026-08-20196638916.1 KB

23d8982b533d

General.OAuth
REGION.US

Get access token

Access tokens are used to access API resources.

post/api/v1/oauth/token

Response

successful operation

access_tokenstring required

Access token that can be used to access an API resource. It should be treated as opaque (no defined format).

expires_ininteger required

Seconds until access token expires.

id_hintstring nullable required

Human-readable information about the identity of user. Always present; null when not applicable.

scopestring

Scope of the access token. Omitted when empty.

token_typestring required

Type of authorization token returned.

Example response

{
  "access_token": "3084989d7eb94d58995217807441bdf4",
  "expires_in": 7200,
  "id_hint": "John Doe",
  "scope": "transactions:read,accounts:read",
  "token_type": "bearer"
}