action beezup_delete_store_share { label: "Delete a share of a store to another user" provider: beezup method: DELETE path: "/v2/user/customer/stores/{storeId}/shares/{userId}" encoding: json input: { type: "object" properties: { storeId: { type: "string" format: "guid" } userId: { type: "string" format: "guid" } } required: ["storeId", "userId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }