action idtbeyond_get_iatu_charges_reports_all { label: "List of account charges in JSON" description: "Returns charges by date range." provider: idtbeyond method: GET path: "/iatu/charges/reports/all" encoding: json input: { type: "object" properties: { date_from: { type: "string" } date_to: { type: "string" } "x-idt-beyond-app-id": { type: "string" } "x-idt-beyond-app-key": { type: "string" } } required: ["date_from", "date_to", "x-idt-beyond-app-id", "x-idt-beyond-app-key"] additionalProperties: false } output: { type: "object" additionalProperties: true } }