Refresh Access Token

How to refresh the Access Token

Refresh Token

POST https://sec-id-api.securitize.io/v1/{clientId}/oauth2/refresh

Used to exchange provided refresh token for new accessToken. NOTE: Access token expires in 7days, refresh token is one time use and expires in 365 days.

Path Parameters

NameTypeDescription

clientId

string

Your application Client Id provided by Securitize

Headers

NameTypeDescription

authorization

string

Your application secret provided by Securitize

Request Body

NameTypeDescription

refreshToken

string

Code provided from Authentication flow on users browser

{
  "investorId": "string",
  "accessToken": "string",
  "refreshToken": "string",
  "expiration": "2020-05-23T18:52:03.415Z"
}

Last updated