Issuer Data Access Request
Clients who registered an issuer that already has a registration in the assignor registry platform need to request access to the issuer data so they can issue operations with this issuer as a party in the bookkeeping system.
Access Request (POST)
Request
ENDPOINT
/issuer_management/issuer/data_access_requestMETHOD
POSTRequest Body
Request Body
{
"document_number": "96.146.194/0001-07",
}
Response
STATUS
201Response Body
{
"issuer_key": "07b1ac01-5fc4-475f-930b-19595f24bc1e",
"name": "Fabrica Exemplo S.A.",
"document_number": "96.146.194/0001-07",
"status": "approved",
"backoffice_analysis_status": "approved",
"person_type": "legal",
"trading_name": "Fabrica 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": "2025-01-23T13:47:57.354528",
"expiration_date": "2026-01-23",
"signer_group_list": [
{
"signer_group_key": "123e4567-e89b-12d3-a456-426614174000",
"minimum_required_signers": 2,
"signers": [
{
"name": "João da Silva",
"document_number": "123.456.789-01",
"email": "joao.silva@email.com",
"phone_number": "+5511999999999",
"is_group_mandatory": true
},
{
"name": "Maria Souza",
"document_number": "123.456.789-01",
"email": "maria.souza@email.com",
"phone_number": "+5511988888888",
"is_group_mandatory": false
}
]
}
],
"bank_account_list": [
{
"bank_account_key": "123e4567-e89b-12d3-a456-426614174000",
"account_number": "12345678",
"account_digit": "1",
"account_branch": "1234",
"financial_institution_code_number": "001",
"financial_institution_ispb": "00000000",
"account_type": "checking"
}
],
"issuer_representative_list": [
{
"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": [
{
"document_key": "123e4567-e89b-12d3-a456-426614174000",
"document_type": "cnh",
"ocr_key": "123e4567-e89b-12d3-a456-426614174000"
}
]
}
],
"issuer_contact_information_list": [
{
"name": "João da Silva",
"document_number": "123.456.789-01",
"email": "joao.silva@email.com",
"phone_number": "+5511999999999"
}
],
"issuer_document_list": [
{
"document_key": "123e4567-e89b-12d3-a456-426614174000",
"document_type": "proof_of_address",
"ocr_key": "123e4567-e89b-12d3-a456-426614174000"
}
],
"issuer_analysis_list": [],
"payment_bank_account": {
"account_number": "19500",
"account_digit": "7",
"account_branch": "0001"
}
}
Response Body Params
| Field | Type | Description | Max Characters |
|---|---|---|---|
issuer_key | string | Unique issuer identifier. | 36 |
name | string | Full issuer name. | 255 |
document_number | string | Issuer document number (CNPJ). | 14 |
status | string | Issuer status | status Enumerators |
backoffice_analysis_status | string | Backoffice analysis status. | - |
person_type | string | Person type (legal or natural). | - |
trading_name | string | Issuer trade name. | 1023 |
cnae_code | string | Issuer CNAE code. | 10 |
company_type | string | Company type Accepted: ´sa´, ´ltda´, ´cop´ | 50 |
foundation_date | string | Issuer foundation date. | - |
signer_group_list | array | List of signer groups associated with the issuer. | - |
bank_account_list | array | List of bank accounts associated with the issuer. | - |
issuer_representative_list | array | List of issuer representatives. | - |
issuer_contact_information_list | array | List of contact information associated with the issuer. | - |
issuer_document_list | array | List of documents registered for the issuer. | - |
address * | string | Object referencing the address | address object |
Address Object
| Field | Type | Description | Max Characters |
|---|---|---|---|
street * | string | Street name of the company address. | 500 |
neighborhood | string | Neighborhood name of the company address. | 100 |
number * | string | Address number. | 10 |
postal_code * | string | Address postal code (numbers only). | 8 |
city * | string | City name of the address. | 255 |
state * | string | State abbreviation (2 characters). | 2 |
complement | string | Address complement, if applicable. | 100 |
status Enumerators
| Enum | Description |
|---|---|
in_filling | In filling |
in_analysis | Under analysis |
canceled | Canceled |
approved | Approved |
reproved | Rejected |
expired | Expired |
payment_bank_account Object
| Field | Type | Description | Max Characters |
|---|---|---|---|
account_digit * | string | Bank account digit. | - |
account_branch * | string | Bank branch. | - |
account_number * | string | Bank account number. | - |