Investor Contact Information Registration
This endpoint allows registering contact information associated with a previously registered investor.
Request
ENDPOINT
/investor_management/investor/INVESTOR-KEY/investor_contact_informationMETHOD
POSTPath Params
| Field | Type | Description | Characters |
|---|---|---|---|
INVESTOR-KEY | string | Unique investor key (UUID v4). | 36 |
Request Body
Request Body
{
"name": "João da Silva",
"document_number": "123.456.789-01",
"email": "joao.silva@email.com",
"phone_number": "+5511999999999"
}
Request Body Params
| Field | Type | Description | Max Characters |
|---|---|---|---|
name * | string | Full name of the contact. | 255 |
document_number * | string | Contact's document number (CPF format, "XXX.XXX.XXX-XX"). | 11 |
email* | string | Contact's email address. | 1023 |
phone_number* | string | Contact's phone number (complete format: country code, area code and number. Example: +5511999999999). | 20 |
Response
STATUS
201Response Body
{
"investor_contact_information_key": "123e4567-e89b-12d3-a456-426614174000",
"name": "João da Silva",
"document_number": "123.456.789-01",
"email": "joao.silva@email.com",
"phone_number": "+5511999999999"
}
Response Body Params
| Field | Type | Description | Max Characters |
|---|---|---|---|
investor_contact_information_key | string | Unique identifier of the registered contact information (UUID v4). | 36 |
name | string | Full name of the contact. | 255 |
document_number | string | Contact's document number (CPF). | 11 |
email | string | Contact's email address. | 1023 |
phone_number | string | Contact's phone number. | 20 |