action beezup_update_store { label: "Update some store's information." description: "Update some store's information. FYI, you cannot change the country.\n" provider: beezup method: PATCH path: "/v2/user/customer/stores/{storeId}" encoding: json input: { type: "object" properties: { name: { type: "string" description: "The store name. Must be unique." } sectors: { type: "array" description: "The store's sectors based on the list of values /user/lov/ParamSector" items: { type: "string" description: "The store's sector based on the list of values /user/lov/ParamSector" } } storeId: { type: "string" format: "guid" } url: { type: "string" description: "The url of your store" } } required: ["name", "sectors", "storeId", "url"] additionalProperties: false } output: { type: "object" additionalProperties: true } }