# List daily commissions Retrieve a list of daily commissions, including the total number of commissions and total value earned per day, optionally filtered by date range and commission status. Endpoint: POST /easyflow/commissions/daily-commissions-list Version: 1.0 Security: bearerAuth ## Header parameters: - `business-id` (string, required) Business Identifier - `x-fingerprint-id` (string, required) Unique device or session fingerprint identifier used for security and fraud prevention. ## Request fields (application/json): - `initialDate` (string) - `endDate` (string) - `status` (array) Enum: "pending", "paid", "released", "canceled", "reversed", "refunded", "charged-back" ## Response 200 fields (application/json): - `statusCode` (integer) - `data` (array) - `data.count` (integer) Number of commissions on that day. - `data.totalValue` (integer) Total value earned in cents on that day. - `data.date` (string) Date for the daily commission record (YYYY-MM-DD). ## Response 400 fields (application/json): - `message` (string) Invalid param: [] Example: "Invalid param: []" - `error` (string) Bad Request Example: "Bad Request" - `statusCode` (integer) 400 Example: 400 ## Response 401 fields (application/json): - `message` (string) Invalid field Example: "Unauthorized" - `error` (string) Unauthorized Example: "Unauthorized" - `statusCode` (integer) 401 Example: 401 ## Response 403 fields (application/json): - `message` (string) Forbidden resource Example: "Forbidden resource" - `error` (string) Forbidden Example: "Forbidden" - `statusCode` (integer) 403 Example: 403 ## Response 500 fields (application/json): - `message` (string) Internal server error Example: "Internal server error" - `error` (string) Internal Server Error Example: "Internal Server Error" - `statusCode` (integer) 500 Example: 500