action whapi_get_balance { label: "Get a customers account balance" description: "This method can be used to retrieve the customer’s account balance in UK Sterling." provider: whapi method: GET path: "/account/balance" encoding: json input: { type: "object" properties: { apiKey: { type: "string" } apiSecret: { type: "string" } apiTicket: { type: "string" } exclude: { type: "string" } fields: { type: "string" } include: { type: "string" } languageAsPerTerritory: { type: "string" } territory: { type: "string" } } required: ["apiKey", "apiSecret", "apiTicket"] additionalProperties: false } output: { type: "object" additionalProperties: true } }