Skip to main content

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_information
METHOD
POST

Path Params

FieldTypeDescriptionCharacters
INVESTOR-KEYstringUnique 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

FieldTypeDescriptionMax Characters
name *stringFull name of the contact.255
document_number *stringContact's document number (CPF format, "XXX.XXX.XXX-XX").11
email*stringContact's email address.1023
phone_number*stringContact's phone number (complete format: country code, area code and number. Example: +5511999999999).20

Response

STATUS
201
Response 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

FieldTypeDescriptionMax Characters
investor_contact_information_keystringUnique identifier of the registered contact information (UUID v4).36
namestringFull name of the contact.255
document_numberstringContact's document number (CPF).11
emailstringContact's email address.1023
phone_numberstringContact's phone number.20