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

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

token
string
required

Refresh token

Response

OK

status
string
Example:

"SUCCESS"

data
object