Skip to main content

Issuer Registration

This endpoint allows registering the basic information of an issuer.

Request

ENDPOINT
/issuer_management/issuer
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"
},
"annual_revenues": 150000,
"is_in_national_financial_system": false
}

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 "XX.XX-X-XX").7
company_type*stringCompany type.company_type Enumerators
foundation_date*stringCompany foundation date (format "YYYY-MM-DD").-
address *stringObject referencing the addressaddress object
annual_revenuesnumberIssuer's annual revenue declaration.-
is_in_national_financial_systembooleanIndicator if the issuer is part of the National Financial System.-

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
{
"issuer_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",
"payment_bank_account": {
"account_number": "19500",
"account_digit": "7",
"account_branch": "0001"
},
"annual_revenues": 150000,
"is_in_national_financial_system": false
}

Response Body Params

FieldTypeDescriptionMax Characters
issuer_keystringUnique issuer key (UUID).36
namestringFull issuer name.255
document_numberstringIssuer CNPJ.14
statusstringIssuer status.-
person_typestringPerson typeperson_type Enumerators
trading_namestringIssuer trade name.1023
cnae_codestringIssuer CNAE code.7
company_typestringCompany typecompany_type Enumerators
foundation_datestringIssuer foundation date.-
addressstringObject referencing the addressaddress object
registration_datetimestringIssuer registration date and time.-
expiration_datestringIssuer expiration date.-
annual_revenuesnumberIssuer's annual revenue declaration.-
is_in_national_financial_systembooleanIndicator if the issuer is part of the National Financial System.-

person_type Enumerators

EnumDescription
legalLegal Entity
naturalNatural Person
Warning

When registering an issuer, an internal account is reserved that will only be opened if an operation is completed.

payment_bank_account Object

FieldTypeDescriptionMax Characters
account_digit *stringBank account digit.-
account_branch *stringBank branch.-
account_number *stringBank account number.-