Skip to main content
POST
/
v2
/
auth
/
token
cURL
curl --request POST \
  --url https://api.sandbox.finsei.com/v2/auth/token \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data signToken=abc123 \
  --data fingerprintid=fingerprint-xyz
{
  "status": "SUCCESS",
  "data": {
    "accessToken": "<string>",
    "refreshToken": "<string>",
    "wsToken": "<string>"
  }
}

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

Body

signToken
string
Example:

"abc123"

fingerprintid
string
Example:

"fingerprint-xyz"

Response

OK

status
string
Example:

"SUCCESS"

data
object