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>" } }
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Basic <encoded-value>
<encoded-value>
username:password
0
1
"abc123"
"fingerprint-xyz"
OK
"SUCCESS"
Show child attributes