List Merchants
This route allows users to list merchants registered in the system.
scope: merchants.read
Header parameters
AcceptstringOptionalExample:
application/json
Content-TypestringOptionalExample:
application/json
X-API-KeystringRequiredExample:
{{API_KEY}}
Responses
200
Success
application/json
403
Forbidden
application/json
500
Internal Server Error
application/json
get
GET /banking/v1/merchants HTTP/1.1
Host: api.aurixpay.ws
X-API-Key: text
Accept: */*
{
"data": [
{
"id": "019764e0-4ab4-706a-b399-9c3d541689a3",
"name": "Aurix",
"document": "54427392000107",
"status": "approved",
"created_at": "2025-06-12T16:01:50.000000Z",
"updated_at": "2025-06-12T16:01:50.000000Z",
"deleted_at": null
}
],
"total": 1,
"currentPage": 1,
"perPage": 15
}