Get Pending Documents for Company Registration
GET/v1/users/company-registrations/:id/pending-documents
Retrieves the list of pending and uploaded documents for a company registration. This endpoint helps verify which documents are required before uploading.
Request
Path Parameters
Company registration ID.
Header Parameters
The nonce ID is a UUID (v4) used to uniquely identify the request. All requests must have an identifier.
Possible values: [pt-BR, en-US]
Indicates the preferred language. Defaults to Brazilian Portuguese if unspecified.
The product ID is a UUID (v4) used to identify the Z.ro product configuration.
The product target user ID is a UUID (v4) used to identify what user account this request must be executed. Require: x-product-uuid.
Responses
- 200
- 400
- 401
- 403
- 404
- 422
Pending documents retrieved successfully.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
- Array [
- ]
- Array [
- ]
Registration ID.
Company CNPJ.
Legal nature code.
Registration status.
note object
Note ID.
Note creation date.
Note text.
documents objectrequired
uploaded objectrequired
Uploaded documents.
company object[]required
Company documents uploaded.
Document ID.
Document category.
individuals object[]required
Individual documents uploaded.
Partner ID.
pending_upload objectrequired
Pending upload documents.
company objectrequired
Pending company documents.
Documents that must be uploaded.
At least one document from each group must be uploaded.
individuals object[]required
Pending individual documents.
Partner ID.
Partner profile.
Partner types.
Documents that must be uploaded.
At least one document from each group must be uploaded.
{
"registration_id": "REG-ABC123DEF456",
"national_registration": "12345678000190",
"legal_nature": "2062",
"status": "PENDING",
"note": {
"id": "NOTE-123",
"created": "2024-01-15T10:30:00.000Z",
"text": "Additional documents required."
},
"documents": {
"uploaded": {
"company": [
{
"id": "DOC-123456",
"category": "ARTICLES_OF_ASSOCIATION"
}
],
"individuals": [
{
"partner_id": "PARTNER-123"
}
]
},
"pending_upload": {
"company": {
"must_have": [
"ARTICLES_OF_ASSOCIATION",
"PROOF_OF_ADDRESS"
],
"at_least_one": [
[
"CNPJ_CARD",
"CNPJ_CERTIFICATE"
]
]
},
"individuals": [
{
"partner_id": "PARTNER-123",
"profile": "OWNER",
"type": [
"INDIVIDUAL"
],
"must_have": [
"SELFIE",
"ID_FRONT"
],
"at_least_one": [
[
"CPF",
"RG"
]
]
}
]
}
}
}
If any required parameter is missing or has invalid format/type.
User authentication failed.
User does not have permission to access this resource.
Company registration not found.
If any required parameter is missing or has invalid format/type.