action id4i_get_positions_for_organization { label: "Get billing positions for a given organization" provider: id4i method: GET path: "/api/v1/billing/{organizationId}/positions" 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: "array" items: { type: "object" required: ["amount", "count", "description", "service", "singlePrice", "sum", "unit"] properties: { amount: { type: "integer" format: "int64" } count: { type: "number" } description: { type: "string" } service: { type: "string" } singlePrice: { type: "number" } sum: { type: "number" } unit: { type: "string" } } } } }