Skip to main content

Send Investor Document


Introduction

This resource aims to upload the investor's mandatory documents.

Input / Output:

As input, the document in base64, document type, and file extension must be sent.

As output, a document_key will be provided that identifies the sent document.

Attention

This endpoint must be called multiple times, once for each mandatory document. The mandatory documents vary according to the investor type (natural person or legal person) and investor category (retail, qualified or professional).

Request

ENDPOINT
/investor_registry/v2/investor/{investor_key}/investor_analysis/{investor_analysis_key}/document
MÉTODO
POST
STATUS
201

Request body

Example: Identification Document - Natural Person (CNH)
Request Body
{
"type": "cnh",
"document_b64": "base64_encoded_document_content",
"file_extension": "pdf",
"document_data": {
"document_type": "CNH",
"issuer_entity": "DETRAN"
}
}
Example: Identification Document - Natural Person (RG)
Request Body - Frente
{
"type": "rg_front",
"document_b64": "base64_encoded_document_content",
"file_extension": "pdf",
"document_data": {
"document_type": "RG",
"issuer_entity": "SSP",
"document_number": "20.932.206-8"
}
}
Request Body - Verso
{
"type": "rg_back",
"document_b64": "base64_encoded_document_content",
"file_extension": "pdf"
}
Example: CNPJ Card - Legal Person
Request Body
{
"type": "cnpj_card",
"document_b64": "base64_encoded_document_content",
"file_extension": "pdf",
"document_data": {
"document_type": "CNPJ",
"issuer_entity": "RFB"
}
}
Example: Financial Statements - Legal Person
Request Body
{
"type": "financial_statements",
"document_b64": "base64_encoded_document_content",
"file_extension": "pdf"
}
Example: Proof of Residence
Request Body
{
"type": "proof_of_residence",
"document_b64": "base64_encoded_document_content",
"file_extension": "pdf"
}

Body params

FieldTypeDescriptionCharactersRequired
typestringIdentification document type1 - 50Yes
document_b64stringBase 64 of the document-Yes
file_extensionstringFile extension (pdf, png, jpeg)1 - 10Yes
document_dataobjectObject containing the document identification information-No

Document Type

EnumeratorDescriptionSupported Extensions
cnhCNHpdf, jpeg
rgRGpdf, jpeg
rg_backBack of RGpdf, jpeg
rg_frontFront of RGpdf, jpeg
proof_of_residenceProof of residencepdf, jpeg
cnpj_cardCNPJ Cardpdf, jpeg
social_contractSocial Contractpdf, jpeg
company_statuteCompany Statutepdf, jpeg
board_election_recordBoard Election Minutespdf, jpeg
financial_statementsFinancial Statementspdf, jpeg
investor_qualification_proofQualification Proofpdf, jpeg
power_of_attorneyPower of Attorneypdf, jpeg
billing_statementBill/Statementpdf, jpeg
fund_prospectusInvestment Fund Bylawspdf, jpeg

Mandatory Documents

Natural Person

DocumentDescriptionRequired For
cnh or (rg_front + rg_back) or rgInvestor identification documentAll natural person investors
proof_of_residenceProof of residenceAll natural person investors
DocumentDescriptionRequired For
financial_statementsCompany financial statementsAll
social_contractCompany social contractWhen applicable
company_statuteCompany statuteWhen applicable
board_of_election_recordsElection minutesWhen applicable
investor_qualification_proofProof of qualification as qualified investorQualified investor
DocumentDescriptionRequired For
cnpj_cardDocument proving the fund's existenceAll
financial_statementsFinancial statementsAll
fund_prospectusInvestment Fund BylawsAll

Response

Response Body
{
"document_key": "UUID"
}