Individual Investor Example

How to get information from an investor (full response)

Get Investor Information ( Individual )

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

Example for individual investor data ( full individual investor information )

Path Parameters

Headers

{
  "status": 200,
  "data": {
    "investorId": "string",
    "createDate": "string",
    "fullName": "string",
    "tfaEnabled": "boolean",
    "language": "string",
    "email": "string",
    "verificationStatus": "Enum [ none, processing, updates-required, verified, manual-review, rejected, expired ]",
    "details": {
      "investorType": "Enum [individual, entity]",
      "firstName": "string",           
      "middleName": "string",
      "lastName": "string",
      "birthCountry": "string",
      "birthCity": "string",
      "mainIdentificationNumber": "string",
      "gender": "Enum [male, female]",
      "tax": [
        {
          "id": "string",
          "taxCountryCode": "string",
          "taxId": "string"
        },
        ...
      ],
      "phone": {
        "code": "string",
        "number": "string",
        "fullNumber": "string"
      },
      "address": {
        "countryCode": "string",
        "state": "string",   // only for US
        "city": "string",
        "entrance": "string",
        "houseNumber": "string",
        "street": "string",
        "zip": "string"
      },
      "birthday": "date"
    }
  },
  "error": null,
  "success": true
}

Last updated