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
  • Get investor verification details
  • Investor verification

Was this helpful?

Verification Details

How to get investor verification details

Get investor verification details

Investor verification

GET https://sec-id-api.securitize.io/v1/{clientId}/investor/verification

Used to get latest verification status with errors if they exist

Path Parameters

Name
Type
Description

clientId

string

Your application Client Id provided by Securitize

Headers

Name
Type
Description

access-token

string

Investor accessToken

authorization

string

Your application secret provided by Securitize

{
  "status": 0,
  "data": {
    "investorId": "string",
    "status": "none",
    "createDate": "2020-05-27T18:13:51.193Z",
    "updateDate": "2020-05-27T18:13:51.193Z",
    "operatorFullName": "string",
    "isManual": true,
    "errors": [
      "string"
    ]
  },
  "error": {},
  "success": true
}
{
  "status": 0,
  "data": {},
  "error": {},
  "success": true
}

Get investor Verification Details

PreviousLegal SignersNextWallets

Last updated 3 years ago

Was this helpful?