action apacta_get_expenses_highest_amount { label: "Show highest Expense amount(`total_selling_price`)" provider: apacta method: GET path: "/expenses/highest_amount" encoding: json input: { type: "object" properties: { gt_created: { type: "string" format: "date" } lt_created: { type: "string" format: "date" } } required: ["gt_created", "lt_created"] additionalProperties: false } output: { type: "object" properties: { data: { type: "array" items: { properties: { highest_amount: { type: "number" format: "float" } } } } success: { type: "boolean" } } } }