Get Merchant by ID
GET/v1/users/merchant-onboarding/:id
Retrieves merchant details by ID. Returns merchant onboarding data stored in the system.
Request
Path Parameters
Merchant onboarding 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
- 422
Merchant retrieved successfully.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
Merchant onboarding ID.
Possible values: [PENDING, WAITING_DOCUMENTS, APPROVED, DECLINED, FAILED]
Merchant onboarding status.
External merchant ID.
Merchant ID (MID) for synchronization with authorizers.
Trade name.
Merchant name.
Document ID.
Corporate name.
Email.
Area code.
Phone number.
Possible values: [C, P]
Phone type.
Establishment timezone. Format: +0300, -0300 (without colon).
Is active.
contacts object[]required
Contacts list.
Contact name.
Contact document ID.
Contact email.
Contact area code.
Contact number.
Possible values: [C, P]
Phone type.
Birth date.
Is partner contact.
Is PEP.
Possible values: [WAITING_DOCUMENTS, PENDING, APPROVED, DECLINED, KYCOFFLINE, NOT_ANALYSIS]
Risk analysis status.
Risk analysis status justification.
Opening date.
Opening days.
Opening hour.
Closing hour.
Municipal registration.
State subscription.
Has TEF.
Has PIX.
Has TOP.
Has 3DS.
Possible values: [EI, MEI, EIRELI, LTDA, SS, SA, ME, EPP, EMPG, COOP, DEMAIS]
Establishment format.
Revenue.
Created at.
Updated at.
{
"id": "8fc58500-b12e-49d7-892c-dfd704b94c2d",
"status": "APPROVED",
"external_id": "slug-merchant-123",
"merchant_id": "12345678901234",
"trade_name": "Loja do João",
"name": "Loja do João LTDA",
"document_id": "12345678000190",
"corporate_name": "Loja do João LTDA",
"email": "contato@lojadojoao.com.br",
"area_code": "11",
"number": "987654321",
"phone_type": "C",
"timezone": "-0300",
"active": true,
"contacts": [
{
"name": "João Silva",
"document_id": "12345678901",
"email": "joao@example.com",
"area_code": "11",
"number": "987654321",
"phone_type": "C",
"birth_date": "2026-01-05T14:46:29.374Z",
"is_partner_contact": true,
"is_pep": false
}
],
"risk_analysis_status": "APPROVED",
"risk_analysis_status_justification": "Merchant approved after document review",
"opening_date": "2020-01-01",
"opening_days": "0111110",
"opening_hour": "09:00",
"closing_hour": "18:00",
"municipal_registration": "123456",
"state_subscription": "987654",
"has_tef": true,
"has_pix": true,
"has_top": false,
"has_3ds": false,
"establishment_format": "LTDA",
"revenue": 1000000,
"created_at": "2024-01-15T10:00:00.000Z",
"updated_at": "2024-01-15T10:00:00.000Z"
}
If any required parameter is missing or has invalid format/type.
User authentication failed.
If any required parameter is missing or has invalid format/type.