action id4i_get_sum_for_organization { label: "Get billing amount of services for a given organization" provider: id4i method: GET path: "/api/v1/billing/{organizationId}" encoding: json input: { type: "object" properties: { fromDate: { type: "string" format: "date-time" } organizationId: { type: "string" } toDate: { type: "string" format: "date-time" } } required: ["organizationId"] additionalProperties: false } output: { type: "object" required: ["listing"] properties: { listing: { type: "object" } } } }