action whapi_get_payments { label: "Gets a customer's account payments" description: "Retrieves the customer’s account payments in UK Sterling." provider: whapi method: GET path: "/account/payments" encoding: json input: { type: "object" properties: { apiKey: { type: "string" } apiSecret: { type: "string" } apiTicket: { type: "string" } dateFrom: { type: "string" } dateTo: { type: "string" } exclude: { type: "string" } fields: { type: "string" } include: { type: "string" } languageAsPerTerritory: { type: "string" } page: { type: "string" } pageSize: { type: "string" } sort: { type: "string" } territory: { type: "string" } transactionType: { type: "string" } } required: ["apiKey", "apiSecret", "apiTicket"] additionalProperties: false } output: { type: "object" additionalProperties: true } }