Paginated affiliate payouts (page, limit, optional search); each row includes an invoice_nr for the linked invoice.
Request
Add parameter in header API-key
Example:API-key: ********************
Request Code Samples
curl --location --request GET 'https://mijn.host/api/v2/affiliate/payments/?page&limit&search' \
--header 'Accept: application/json' \
--header 'User-Agent: my-application/1.0.0' \
--header 'API-key: <api-key>' \
--header 'Content-Type: application/json'
Responses
application/json {
"status": 200,
"status_description": "Request successful",
"data": {
"payments": [
{
"id": 1,
"date": "2026-01-10 12:00:00",
"invoice_nr": "123456",
"amount": 100,
"payment_status": 1
}
],
"pagination": {
"page": 1,
"limit": 50,
"total": 1,
"total_pages": 1
}
}
}
Modified at 2026-04-09 12:56:00