curl --location 'https://aff-api.uppromote.com/api/v2/analytics/commission-breakdown?from_date=2025-05-01T00%3A00%3A00Z&to_date=2025-05-31T23%3A59%3A59Z&exclude_network_sales=true&program_id=12&affiliate_email=jane%40example.com' \
--header 'Accept: application/json' \
--header 'Authorization: <YOUR_API_KEY>' \
--header 'Content-Type: application/json'{
"status": 200,
"message": "success",
"data": {
"date_range": {
"from_date": "2025-05-01T00:00:00Z",
"to_date": "2025-05-31T23:59:59Z"
},
"commission_breakdown": {
"pending": 1250,
"approved": 3400.5,
"paid": 8900
},
"total_commission": 13550.5,
"currency": "USD"
}
}