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 Document Information
  • Investor Documents List
  • Preview or Download document
  • Get Document URL based on documentId

Was this helpful?

Investor Documents

How to get documents from an investor

Get Investor Document Information

Investor Documents List

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

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,
  "error": {},
  "success": true,
  "data": [
    {
      "documentId": "string",
      "docType": "passport",
      "docCategory": "identification",
      "side": "front",
      "fileName": "30dec9b7-c2b8-4d3b-99ab-6bfde86a1a00.jpeg",
      "thumbnail": "string",
      "fileType": "image/jpeg",
      "verificationStatus": "pending",
      "createDate": "2020-05-27T18:08:53.501Z"
    },
    ...
  ]
}

Preview or Download document

Get Document URL based on documentId

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

Get temporary link to view or download document

Path Parameters

Name
Type
Description

clientId

string

Your application Client Id provided by Securitize

documentId

string

Id of the selected document to view

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"
  }
}
PreviousEntity Investor ExampleNextLegal Signers

Last updated 3 years ago

Was this helpful?