action beezup_get_store_alerts { label: "Get store's alerts" provider: beezup method: GET path: "/v2/user/customer/stores/{storeId}/alerts" encoding: json input: { type: "object" properties: { "If-None-Match": { type: "string" } storeId: { type: "string" format: "guid" } } required: ["storeId"] additionalProperties: false } output: { type: "object" properties: { alerts: { type: "array" items: { type: "object" required: ["links", "alertId", "alertName", "enabled"] properties: { alertId: { type: "integer" format: "int32" description: "Alert identifier" } alertName: { type: "string" description: "The alert name" } enabled: { type: "boolean" description: "Is the alert enable ?" } links: { type: "object" description: "The different actions you can make on this alert" properties: { save: { type: "object" } } } properties: { type: "array" description: "The current configuration properties of the alert" items: { type: "object" } } } } } } } }