action bigredcloud_suppliers_get_opening_balance { label: "Returns a Supplier's opening balances, calculated for the next periods: current month, one month old, two months old, three and more months old." provider: bigredcloud method: GET path: "/v1/suppliers/{itemId}/openingBalance" encoding: json input: { type: "object" properties: { itemId: { type: "integer" format: "int64" } } required: ["itemId"] additionalProperties: false } output: { type: "object" properties: { currentMonth: { type: "number" format: "double" } oneMonthOld: { type: "number" format: "double" } threeMonthsOld: { type: "number" format: "double" } twoMonthsOld: { type: "number" format: "double" } } } }