action whapi_get_plus_card_details { label: "Gets a customer's plus card details if they exist." description: "Gets a customer's plus card details if they exist." provider: whapi method: GET path: "/account/plusCard" encoding: json input: { type: "object" properties: { apiKey: { type: "string" } apiSecret: { type: "string" } apiTicket: { type: "string" } exclude: { type: "string" } fields: { type: "string" } include: { type: "string" } } required: ["apiKey", "apiSecret", "apiTicket"] additionalProperties: false } output: { type: "object" additionalProperties: true } }