Skip to main content
POST
/
v3
/
auth
/
token
Login and get authorization token
curl --request POST \
  --url https://api.sandbox.finsei.com/v3/auth/token \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data fingerprint=
{
  "access": {
    "token": "<string>",
    "expiredAt": 123,
    "expiresIn": 123
  },
  "refresh": {
    "token": "<string>",
    "expiredAt": 123,
    "expiresIn": 123
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

validate
enum<integer>
default:0
Available options:
0,
1
signToken
string

Body

fingerprint
string | null
default:""

Device fingerprint

Maximum string length: 64

Response

OK

access
object
refresh
object