Skip to main content

Investor Registration

This endpoint allows registering the basic information of an investor.

Request

ENDPOINT
/investor_management/investor
METHOD
POST

Request Body

Request Body
{
"name": "Empresa Exemplo S.A.",
"document_number": "12.345.678/0001-95",
"trading_name": "Exemplo Comércio",
"cnae_code": "62.02-3-00",
"company_type": "sa",
"foundation_date": "2000-01-01",
"address": {
"street": "Rua das Empresas",
"neighborhood": "Centro",
"number": "123",
"postal_code": "01001-000",
"city": "São Paulo",
"state": "SP",
"complement": "Sala 101"
}
}

Request Body Params

FieldTypeDescriptionMax Characters
name *stringFull company name.255
document_number *stringCompany CNPJ (format "XX.XXX.XXX/XXXX-XX").14
trading_name*stringCompany trade name.1023
cnae_code*stringCompany CNAE code (format "XXXXX-XXX").7
company_type*stringCompany type.company_type Enumerators
foundation_date*stringCompany foundation date (format "YYYY-MM-DD").-
address *stringObject referencing the addressaddress object

Address Object

FieldTypeDescriptionMax Characters
street *stringStreet name of the company address.500
neighborhood *stringNeighborhood name of the company address.100
number *stringAddress number.10
postal_code *stringAddress postal code (format "XXXXX-XXX").8
city *stringCity name of the address.255
state *stringState abbreviation (2 characters).2
complementstringAddress complement, if applicable.100

company_type Enumerators

EnumDescription
ltdaLimited Company
saSociedade Anônima
copCooperative

Response

STATUS
201
Response Body
{
"investor_key": "123e4567-e89b-12d3-a456-426614174000",
"name": "Empresa Exemplo S.A.",
"document_number": "12.345.678/0001-95",
"status": "in_filling",
"person_type": "legal",
"trading_name": "Exemplo Comércio",
"cnae_code": "62.02-3-00",
"company_type": "sa",
"foundation_date": "2000-01-01",
"address": {
"street": "Rua das Empresas",
"neighborhood": "Centro",
"number": "123",
"postal_code": "01001-000",
"city": "São Paulo",
"state": "SP",
"complement": "Sala 101"
},
"registration_datetime": "2023-01-01T12:00:00Z",
"expiration_date": "2024-01-01T12:00:00Z"
}

Response Body Params

FieldTypeDescriptionMax Characters
investor_keystringUnique investor key (UUID).36
namestringFull investor name.255
document_numberstringInvestor CNPJ.14
statusstringInvestor status.-
person_typestringPerson typeperson_type Enumerators
trading_namestringInvestor trade name.1023
cnae_codestringInvestor CNAE code.7
company_typestringCompany typecompany_type Enumerators
foundation_datestringInvestor foundation date.-
addressstringObject referencing the addressaddress object
registration_datetimestringInvestor registration date and time.-
expiration_datestringInvestor expiration date.-

person_type Enumerators

EnumDescription
legalLegal Entity
naturalNatural Person