action clever_cloud_get_organisations_id_consumptions { label: "getOrganisationsIdConsumptions" provider: clever_cloud method: GET path: "/organisations/{id}/consumptions" encoding: json input: { type: "object" properties: { appId: { type: "string" } from: { type: "string" } to: { type: "string" } } additionalProperties: false } output: { type: "object" required: ["appId", "conso"] properties: { appId: { type: "string" } conso: { type: "object" required: ["conso", "date"] properties: { conso: { type: "string" description: "One day consumption" } date: { type: "string" } } } } } }