action motaword_get_commission_stats_by_filter { label: "Returns the total commissions stats by report filter." provider: motaword method: POST path: "/stats/commissions" encoding: json input: { type: "object" properties: { budget_code: { type: "string" description: "budget code filter. valid for corporate accounts only." } date_from: { type: "string" format: "date-time" description: "the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z" } date_to: { type: "string" format: "date-time" description: "the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z" } source_languages: { type: "array" description: "List of source language codes." items: { type: "string" } } target_languages: { type: "array" description: "List of target language codes." items: { type: "string" } } users: { type: "array" description: "List of corporate user IDs. Valid for corporate accounts only." items: { type: "integer" format: "int64" } } } } output: { type: "object" properties: { balance: { type: "object" properties: { amount: { type: "number" format: "float" } currency: { type: "string" } } } paid: { type: "object" additionalProperties: true } quote_total: { type: "object" additionalProperties: true } total: { type: "object" additionalProperties: true } } } }