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 Legal Signers Information
  • Preview or Download document
  • Get Investor Legal Signers Information

Was this helpful?

Legal Signers

How to get Legal Signers Information

Get Investor Legal Signers Information

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

Used to get investor legal signers information ( returns list of legal signers )

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": [
    {
      "signerId": "5ecece7244ba5b00184cbb87"
      "signerType": "individual - Enum [individual, entity]",
      "email": "string",
      "individualName": {
        "firstName": "string",
        "middleName": "string",
        "lastName": "string"
      },
      "address": {
        "street": "string",
        "houseNumber": "string",
        "entrance": "string",
        "city": "string",
        "countryCode": "US",
        "state": "CA",
        "zip": "string"
      },
      "birthDate": "1997-05-21",
      "documents": [
        {
          "documentId": "string",
          "docType": "string",
          "docCategory": "string",
          "side": ""Enum [front, back]",
          "fileName": "60848310-8067-4846-86b6-533fe3d93521.jpeg",
          "fileType": "image/jpeg",
          "verificationStatus": "Enum [pending, verified, not-verified, manual-review],
          "thumbnail": "string",
          "createDate": "2020-05-27T20:32:50.630Z"
        }
      ],
      "createDate": "2020-05-27T20:32:50.414Z"
    },
    {
      "signerId": "string",
      "signerType": "entity - Enum [individual, entity]",
      "legalName": "string",
      "businessName": "string",
      "entityType": "string",
      "taxId": "string",
      "birthDate": "2020-05-27",
      "documents": [
        {
          "documentId": "string",
          "docType": "other",
          "docCategory": "string",
          "side": ""Enum [front, back]",
          "fileName": "1070314e-7cdf-4aaf-b488-8173d71b91ef.jpeg",
          "fileType": "image/jpeg",
          "verificationStatus": "Enum [pending, verified, not-verified, manual-review],
          "thumbnail": "string",
          "createDate": "2020-05-27T20:33:19.226Z",
        }
      ],
      "createDate": "2020-05-27T20:33:19.015Z"
    }
  ],
  "error": null,
  "success": true
}

Preview or Download document

Get Investor Legal Signers Information

GET https://sec-id-api.securitize.io/v1/{clientId}/investor/signers/{signerId}/documents/{documentId}/view

Used to get temporary link to view or download the file.

Path Parameters

Name
Type
Description

documentId

string

Id of the selected document to view

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,
  "error": {},
  "success": true,
  "data": {
    "url": "https://staging-testing-documents.s3.us-east-2.amazonaws.com/documents/5df248a0856b2b202eab3ebc/23fe3c65-50c9-4024-b254-784b0d529dae.jpeg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=b5970e428c24e3bb&X-Amz-SignedHeaders=host",
  }
}

PreviousInvestor DocumentsNextVerification Details

Last updated 4 years ago

Was this helpful?