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?

Investor Information

Please see the responses example for New as well as Individual and Entity Investor.

Get Investor Information

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

Used to get investor information

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": "5defbf8130b4212eb55044b4",
    "email": "string",
    "fullName": "string",
    "verificationStatus": "Enum [ none, processing, updates-required, verified, manual-review, rejected, expired ]",
    "tfaEnabled": true,
    "language": "string",
    "createDate": "2017-07-21T17:32:28.000Z",
    "details": {
      "firstName": "string",
      "lastName": "string",
      "middleName": "string",
      "birthday": "string",
      "phone": {
        "code": "+380",
        "number": "8888888",
        "fullNumber": "+3808888888"
      },
      "investorType": "Enum [individual, entity]",
      "gender": "Enum [male, female]",
      "birthCountry": "string",
      "birthCity": "string",
      "birthState": "string",
      "mainIdentificationNumber": "string",
      "entityName": "string",
      "businesses": "string",
      "entityType": "string",
      "entityIdNumber": "string",
      "tax": [
        {
          "taxId": "string",
          "taxCountryCode": "string"
        }
      ],
      "address": {
        "street": "string",
        "houseNumber": "string",
        "entrance": "string",
        "city": "string",
        "countryCode": "string",
        "state": "string",   // only for US
        "zip": "string"
      }
    }
  },
  "error": {},
  "success": true
}
PreviousApplication ConfigurationNextNew Investor Example

Last updated 4 years ago

Was this helpful?