action edrv_get_transactions { label: "getTransactions" description: "Get a list of transactions" provider: edrv method: GET path: "/v1/transactions" encoding: json input: { type: "object" properties: { status: { type: "string" enum: ["Started", "Ended"] } } additionalProperties: false } output: { type: "object" properties: { hasNext: { type: "boolean" } hasPrevious: { type: "boolean" } message: { type: "string" } ok: { type: "boolean" } result: { type: "array" items: { type: "object" } } } } }