Securitize Connect API
  • Securitize iD
  • General information
  • Scope of Access
  • User Interface & Landing page
  • Accessing the APIs
  • OAuth 2.0
    • Authentication
    • Access Token
    • Refresh Access Token
    • Application Configuration
  • Verification Information
  • Investor Information
    • New Investor Example
    • Individual Investor Example
    • Entity Investor Example
  • Investor Documents
  • Legal Signers
  • Verification Details
  • Wallets
  • Whitelisting
    • Whitelisting redirected URLs
Powered by GitBook
On this page

Was this helpful?

  1. OAuth 2.0

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

Name
Type
Description

clientId

string

Your application Client Id provided by Securitize

Headers

Name
Type
Description

authorization

string

Your application secret provided by Securitize

Request Body

Name
Type
Description

refreshToken

string

Code provided from Authentication flow on users browser

{
  "investorId": "string",
  "accessToken": "string",
  "refreshToken": "string",
  "expiration": "2020-05-23T18:52:03.415Z"
}
{
  "statusCode": 401,
  "error": "Unauthorized",
  "message": "Failed to authorize",
  "details": null
}
PreviousAccess TokenNextApplication Configuration

Last updated 3 years ago

Was this helpful?