Investor Documents Submission
This endpoint allows submitting documents associated with a previously registered investor.
Request
ENDPOINT
/investor_management/investor/INVESTOR-KEY/documentMETHOD
POSTPath Params
| Field | Type | Description | Characters |
|---|---|---|---|
INVESTOR-KEY | string | Unique investor key (UUID v4). | 36 |
Request Body
Request Body
{
"document_base64": "dGVzdGVfZG9jdW1lbnRfYmFzZTY0",
"document_type": "proof_of_address"
}
Request Body Params
| Field | Type | Description | Max Characters |
|---|---|---|---|
document_base64 * | string | Document file content encoded in Base64. | - |
document_type * | string | Type of document submitted. | document_type Enumerators |
document_type Enumerators
| Enum | Description |
|---|---|
danfe | DANFE |
proof_of_address | Proof of Address |
letter_of_attorney | Power of Attorney |
company_statute | Company Contract or Statute |
Response
STATUS
201Response Body
{
"document_key": "123e4567-e89b-12d3-a456-426614174000",
"document_type": "proof_of_address",
"ocr_key": "123e4567-e89b-12d3-a456-426614174000"
}
Response Body Params
| Field | Type | Description | Max Length |
|---|---|---|---|
document_key | string | Unique identifier of the submitted document (UUID v4). | 36 |
document_type | string | Type of document submitted. | document_type Enumerators |
ocr_key | string | OCR key associated with the submitted document. | 36 |