v1
latestOpenAPI 3.1.02026-07-261055249.9 KBClient Authorization
Create access token
Create a new token to access user resources.
post/auth/token
Request body
Example request
{
"grant_type": "password",
"username": "user@example.com",
"password": "hunter2",
"scope": "accounts=ro balance=ro transactions=ro offline"
}Response
Created
Example response
{
"access_token": "AoFmNJLDTW8jQtGSJ1iZeeoLiwNZ2ihz3iiCHGpuvE439nppuY",
"expires_in": 3600,
"scope": "accounts=ro balance=ro transactions=ro offline",
"token_type": "Bearer",
"refresh_token": "RTfI2WNyK78NozupDH9ai8GPRbjjdVsXPPt..."
}