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. Investor Information

Entity Investor Example

How to get information from an entity investor (full response)

Get Investor Information ( Entity )

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

Example for individual investor data ( full entity 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": 200,
  "data": {
    "investorId": "string",
    "createDate": "2020-05-27T20:30:50.369Z",
    "fullName": "",
    "tfaEnabled": false,
    "language": "EN",
    "email": "string",
    "verificationStatus": "Enum [ none, processing, updates-required, verified, manual-review, rejected, expired ]",
    "details": {
      "investorType": "Enum [individual, entity]",
      "entityName": "string",
      "businesses": "string",
      "entityType": "string",
      "entityIdNumber": "string",
      "tax": [],
      "address": {
        "countryCode": "IL",
        "city": "string",
        "entrance": "string",
        "houseNumber": "string",
        "street": "string",
        "zip": "string"
      }
    }
  },
  "error": null,
  "success": true
}
PreviousIndividual Investor ExampleNextInvestor Documents

Last updated 4 years ago

Was this helpful?