List affiliate commissions
Run in Apidog
Paginated affiliate commissions for your account (page, limit, optional search). Use GET /affiliate/commissions/{id} for the full record, including any rejection reason when a commission was not approved.
Request Add parameter in header API-key
Example: API-key: ********************
Request Code Samples
curl --location --request GET 'https://mijn.host/api/v2/affiliate/commissions/?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 Generate Code
{
"status" : 200 ,
"status_description" : "Request successful" ,
"data" : {
"commissions" : [
{
"id" : 1 ,
"date" : "2026-01-15 10:30:00" ,
"order_nr" : 12345 ,
"sub_id" : "" ,
"sale_amount" : 99.99 ,
"commission_amount" : 35 ,
"approved" : 1 ,
"paidout" : 0 ,
"payment_id" : null
}
] ,
"pagination" : {
"page" : 1 ,
"limit" : 50 ,
"total" : 1 ,
"total_pages" : 1
}
}
}
Modified at 2026-04-09 12:56:00