action beezup_get_store { label: "Get store's information" provider: beezup method: GET path: "/v2/user/customer/stores/{storeId}" encoding: json input: { type: "object" properties: { "If-None-Match": { type: "string" } storeId: { type: "string" format: "guid" } } required: ["storeId"] additionalProperties: false } output: { type: "object" required: ["countryIsoCodeAlpha3", "creationUtcDate", "currencyCode", "goVersion", "isTest", "links", "name", "offerId", "offerName", "ownerUserId", "sectors", "shareCount", "status", "storeId", "url", "userRole"] properties: { countryIsoCodeAlpha3: { type: "string" description: "The country iso code alpha 3 based on the list of values /user/lov/StoreCountry" } creationUtcDate: { type: "string" format: "date-time" description: "The creation date of the store" } currencyCode: { type: "string" description: "The currency code (ISO 4217)\n" } goVersion: { type: "integer" format: "int32" description: "The version of GO to use" } isTest: { type: "boolean" description: "Is the store a test or a production store" } links: { type: "object" description: "The action links for this store" properties: { deleteStore: { type: "object" } self: { type: "object" } share: { type: "object" } shares: { type: "object" } updateStore: { type: "object" } } } name: { type: "string" description: "The store name. Must be unique." } offerId: { type: "integer" format: "int32" description: "The offer id based on /offers. Not a free offer of course." } offerName: { type: "string" description: "The offer Name" } ownerUserId: { type: "string" format: "guid" description: "The user id of the owner of the store" } 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" } } shareCount: { type: "integer" description: "The share count related to this store" } status: { type: "string" description: "The store status\n* Active: When the store is active\n* SystemBlocked: When the store is blocked by the system\n* UserBlocked: When the store is blocked on GO not on the system\n" enum: ["Active", "SystemBlocked", "UserBlocked"] } storeId: { type: "string" format: "guid" description: "The store identifier" } url: { type: "string" description: "The url of your store" } userRole: { type: "string" description: "Indicates the role can have a user on a store.\n* Owner: Indicates that you are the owner of this store\n* User: Indicates that you are a simple user on this store\n" enum: ["Owner", "User"] } } } }