action beezup_analytics_store_index { label: "Get the Analytics API operation index for one store" provider: beezup method: GET path: "/v2/user/analytics/{storeId}" encoding: json input: { type: "object" properties: { storeId: { type: "string" format: "guid" } } required: ["storeId"] additionalProperties: false } output: { type: "object" required: ["links"] properties: { links: { type: "object" required: ["reportFilters", "self", "trackedClicks", "trackedOrders", "trackingStatus"] properties: { optimise: { type: "object" } optimiseAll: { type: "object" } optimiseByCategory: { type: "object" } optimiseByChannel: { type: "object" } optimiseByProduct: { type: "object" } reportByCategory: { type: "object" } reportByChannel: { type: "object" } reportByDay: { type: "object" } reportByProduct: { type: "object" } reportFilters: { type: "object" } rules: { type: "object" } self: { type: "object" } trackedClicks: { type: "object" } trackedExternalOrders: { type: "object" } trackedOrders: { type: "object" } trackingStatus: { type: "object" } } } } } }