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.
UUID (v4) of the product that the request should use. Send it explicitly when the authenticated user has more than one product or when the integration must select a specific product. If omitted and the endpoint does not require it, the API uses the authenticated user's default product.
UUID (v4) of the user on whose behalf the request should run within the selected product. If omitted, the request runs as the authenticated user. Requires x-product-uuid.
Responses
- 200
- 400
- 401
- 403
- 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 (YYYY-MM-DD).
Is partner contact.
Is PEP.
Possible values: [WAITING_DOCUMENTS, PENDING, APPROVED, DECLINED, KYCOFFLINE, NOT_ANALYSIS]
Risk analysis status.
Risk analysis status justification.
Opening date (YYYY-MM-DD).
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, OTHER]
Establishment format.
Revenue.
Created at.
Updated at.
Legal nature code.
{
"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": "93999833000199",
"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": "1990-05-20",
"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",
"legal_nature_code": "206-2"
}
If any required parameter is missing or has invalid format/type.
User authentication failed.
User does not have permission to access this resource.
If any required parameter is missing or has invalid format/type.