action whapi_set_phone_number { label: "Sets a customer's plus card phone number" description: "Sets a customer's plus card phone number" provider: whapi method: POST path: "/account/plusCard/phone/{oldPhoneNumber}" encoding: json input: { type: "object" properties: { apiKey: { type: "string" } apiSecret: { type: "string" } apiTicket: { type: "string" } oldPhoneNumber: { type: "string" } } required: ["apiKey", "apiSecret", "apiTicket", "oldPhoneNumber"] additionalProperties: false } output: { type: "object" additionalProperties: true } }