# Filter commissions Retrieve the total gross and net commissions for the authenticated user, optionally filtered by date range and commission status. Endpoint: POST /easyflow/commissions/{businessId} Version: 1.0 Security: bearerAuth ## Path parameters: - `businessId` (string, required) Unique identifier of the business. ## Header parameters: - `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) Filter commissions by their current status. Enum: "pending", "paid", "released", "canceled", "reversed", "refunded", "charged-back" ## Response 200 fields (application/json): - `statusCode` (integer) - `data` (object) - `data.totalGrossValueInCents` (integer) Total gross commission value in cents (before fees and taxes). - `data.totalNetValueInCents` (integer) Total net commission value in cents (after fees and taxes). ## 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