List Counterparties
This endpoint returns a paginated list of all counterparties registered.
scope: counterparties.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/counterparties HTTP/1.1
Host: api.aurixpay.ws
X-API-Key: text
Accept: */*
{
"data": [
{
"id": "5d2811d0-c016-4bc9-bc53-848b1d0bc0c6",
"name": "John Doe",
"tax_number": "12311144422",
"inserted_at": "2025-06-25T16:55:12.000000Z",
"updated_at": "2025-06-25T18:31:13.000000Z"
}
],
"pagination": {
"current_page": 1,
"per_page": 15,
"total": 1,
"last_page": 1,
"from": 1,
"to": 1
}
}