action beezup_get_store_shares { label: "Get shares related to this store" provider: beezup method: GET path: "/v2/user/customer/stores/{storeId}/shares" encoding: json input: { type: "object" properties: { "If-None-Match": { type: "string" } storeId: { type: "string" format: "guid" } } required: ["storeId"] additionalProperties: false } output: { type: "object" required: ["links", "shares"] properties: { links: { type: "object" properties: { self: { type: "object" } share: { type: "object" } } } shares: { type: "array" items: { type: "object" required: ["userId", "userRole", "links"] properties: { links: { type: "object" description: "The different actions you can make on this store share" properties: { deleteShare: { type: "object" } } } userId: { type: "string" format: "guid" description: "The user identifier" } 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"] } } } } } } }