action whapi_set_account_flags { label: "Sets a flag based on name to value provided for the user." description: "Sets a flag based on name to value provided for the user." provider: whapi method: POST path: "/account/flags" encoding: json input: { type: "object" properties: { apiCountryCode: { type: "string" } apiKey: { type: "string" } apiSecret: { type: "string" } apiTicket: { type: "string" } languageAsPerTerritory: { type: "string" } territory: { type: "string" } } required: ["apiKey", "apiSecret", "apiTicket"] additionalProperties: false } output: { type: "object" additionalProperties: true } }