Skip to main content

Issuer Representatives Registration

This endpoint allows registering representatives associated with a previously registered issuer.


Request

ENDPOINT
/issuer_management/issuer/ISSUER-KEY/issuer_representative
METHOD
POST

Path Params

FieldTypeDescriptionCharacters
ISSUER-KEYstringUnique issuer key (UUID v4).36

Request Body

Request Body
{
"name": "João da Silva",
"document_number": "123.456.789-01",
"birthdate": "1990-01-01",
"nationality": "BRA",
"mother_name": "Maria da Silva",
"address": {
"street": "Rua das Empresas",
"neighborhood": "Centro",
"number": "123",
"postal_code": "01001-000",
"city": "São Paulo",
"state": "SP",
"complement": "Sala 101"
},
"related_party_type": "attorney",
"annual_revenues": 150000,
}

Request Body Params

FieldTypeDescriptionMax Characters
name *stringFull name of the issuer representative.255
document_number *stringDocument number (CPF, format "XXX.XXX.XXX-XX").11
birthdatestringRepresentative's birthdate in ISO 8601 format (YYYY-MM-DD).-
document_identification_numberstringDocument identification number.255
marital_statusstringRepresentative's marital status.marital_status Enumerators
property_systemstringProperty regime.property_system Enumerators
nationality *stringBeneficiary's country of origin.3, according to ISO 3166-1 alpha-3
mother_namestringFull name of the representative's mother.1023
father_namestringFull name of the representative's father.1023
occupationstringRepresentative's occupation or profession.255
is_pepbooleanIndicates if the representative is a Politically Exposed Person (PEP).-
address *stringObject referencing the addressAddress Object
annual_revenuesnumberAnnual revenue declaration of the assignor.-
related_party_type *enumeratorRelated party relationship type.See Related Party Type Enumerators

Address Object

FieldTypeDescriptionMax Characters
street *stringStreet name of the company address.500
neighborhoodstringNeighborhood 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

marital_status Enumerators

EnumDescription
singleSingle
marriedMarried
widowerWidowed
separatedSeparated
stable_unionIn Stable Union
divorcedDivorced

property_system Enumerators

EnumDescription
total_communion_of_goodsTotal Community of Property
partial_communion_of_goodsPartial Community of Property
total_separation_of_goodsTotal Separation of Property
final_participation_of_acquisitionsFinal Participation in Acquisitions
compulsory_separation_of_goodsCompulsory Separation of Property
EnumeratorDescription
presidentPresident
partnerPartner
administratorAdministrator
directorDirector
managerManager
attorneyAttorney

Response

STATUS
201
Response Body
{
"issuer_representative_key": "123e4567-e89b-12d3-a456-426614174000",
"name": "João da Silva",
"document_number": "123.456.789-01",
"document_identification_number": "987654321",
"marital_status": "single",
"property_system": "partial_communion_of_goods",
"birthdate": "1990-01-01",
"nationality": "BRA",
"mother_name": "Maria da Silva",
"father_name": "José da Silva",
"occupation": "Advogado",
"is_pep": false,
"address": {
"street": "Rua das Empresas",
"neighborhood": "Centro",
"number": "123",
"postal_code": "01001-000",
"city": "São Paulo",
"state": "SP",
"complement": "Sala 101"
},
"related_party_type": "attorney",
"annual_revenues": 150000,
"issuer_representative_document_list": []
}

Response Body Params

FieldTypeDescriptionMax Characters
issuer_representative_keystringUnique identifier for the issuer representative (UUID v4).36
namestringFull name of the issuer representative.255
document_numberstringRepresentative's document number (format "XXX.XXX.XXX-XX").11
document_identification_numberstringDocument identification number.255
marital_statusstringRepresentative's marital status.marital_status Enumerators
property_systemstringProperty regime.property_system Enumerators
birthdatestringRepresentative's birthdate.-
nationality *stringBeneficiary's country of origin.3, according to ISO 3166-1 alpha-3
mother_namestringFull name of the representative's mother.1023
father_namestringFull name of the representative's father.1023
occupationstringRepresentative's occupation or profession.255
is_pepbooleanIndicates if the representative is a Politically Exposed Person (PEP).-
address *stringObject referencing the addressAddress Object
issuer_representative_document_listarrayList of documents associated with the representative.-
annual_revenuesnumberAnnual revenue declaration of the assignor.-
related_party_type *enumeratorRelated party relationship type.See Related Party Type Enumerators