action beezup_get_store_tracked_clicks { label: "Get the latest tracked clicks" provider: beezup method: GET path: "/v2/user/analytics/{storeId}/tracking/clicks" encoding: json input: { type: "object" properties: { count: { type: "integer" } storeId: { type: "string" format: "guid" } } required: ["storeId"] additionalProperties: false } output: { type: "object" required: ["clicks"] properties: { clicks: { type: "array" items: { type: "object" required: ["utcDate", "product", "ipAddress", "channel"] properties: { channel: { type: "object" description: "The basic info related to a channel" required: ["channelId", "channelName", "channelImageUrl"] properties: { channelId: { type: "string" format: "guid" description: "The channel identifier" } channelImageUrl: { type: "string" description: "The URL https://en.wikipedia.org/wiki/URL" } channelName: { type: "string" description: "The channel name" } } } ipAddress: { type: "string" description: "The user IP address for the click" } product: { type: "object" description: "The basic information related to a product" required: ["productId", "productSku", "productTitle", "productExists"] properties: { productExists: { type: "boolean" description: "Indicates if the product still exists in your catalog" } productId: { type: "string" format: "guid" description: "The product identifier" } productImageUrl: { type: "string" format: "uri" description: "The product image Url" } productSku: { type: "string" description: "The product SKU" } productTitle: { type: "string" description: "The product tile" } } } utcDate: { type: "string" format: "date-time" description: "The utc date of the click" } } } } } } }