action testfire_show_last_ten_transactions { label: "showLastTenTransactions" description: "Returns the last 10 transactions attached to an account" provider: testfire method: GET path: "/account/{accountNo}/transactions" encoding: json input: { type: "object" properties: { Authorization: { type: "string" } accountNo: { type: "string" } } required: ["Authorization", "accountNo"] additionalProperties: false } output: { type: "object" additionalProperties: true } }