action beezup_create_store { label: "Create a new store" provider: beezup method: POST path: "/v2/user/customer/stores" encoding: json input: { type: "object" description: "The request to create a store. The store identifier is optional, if null it will be automatically computed." required: ["countryIsoCodeAlpha3", "name", "sectors", "url"] properties: { countryIsoCodeAlpha3: { type: "string" description: "The country iso code alpha 3 based on the list of values /user/lov/StoreCountry" } id: { type: "string" format: "guid" description: "The store identifier" } 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" } } url: { type: "string" description: "The url of your store" } } } output: { type: "object" } }