List Merchants
GET/v1/users/merchant-onboarding
Retrieve a list of merchant onboardings with optional filters.
Request
Query Parameters
Default value: 1
Page number.
Possible values: <= 100
Default value: 20
Page size. Max size is 100.
Possible values: [created_at]
Page sort attribute.
Possible values: [asc, desc]
Default value: asc
Page order.
Possible values: [PENDING, WAITING_DOCUMENTS, APPROVED, DECLINED, FAILED]
Merchant onboarding status.
External merchant ID.
User 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
Merchants returned successfully.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
Page number.
Page size.
Page total.
Total of elements.
data object[]required
Merchant onboardings data.
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.
Establishment timezone. Format: +0300, -0300 (without colon).
Opening days.
Opening hour.
Closing hour.
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.
{
"page": 1,
"page_size": 20,
"page_total": 20,
"total": 100,
"data": [
{
"id": "8fc58500-b12e-49d7-892c-dfd704b94c2d",
"status": "APPROVED",
"external_id": "slug-merchant-123",
"merchant_id": "12345678901234",
"trade_name": "Loja do João",
"timezone": "-0300",
"opening_days": "0111110",
"opening_hour": "09:00",
"closing_hour": "18:00",
"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 params are missing or has invalid format or type.
User authentication failed.
If any required params are missing or has invalid format or type.