action beezup_get_store_tracking_status { label: "Get the synchronization status of clicks and orders of a store" description: "Clicks and orders are eventually consistent. \\\nThis operation gets the current state of projections for a store.\n" provider: beezup method: GET path: "/v2/user/analytics/{storeId}/tracking/status" encoding: json input: { type: "object" properties: { storeId: { type: "string" format: "guid" } } required: ["storeId"] additionalProperties: false } output: { type: "object" properties: { clickSynchronizationUtcDate: { type: "string" format: "date-time" description: "The utc date of the latest synchronized click" } marketplaceOrderSynchonizationUtcDate: { type: "string" format: "date-time" description: "The utc date of the latest synchronized marketplace order" } orderSynchonizationUtcDate: { type: "string" format: "date-time" description: "The utc date of the latest synchronized order" } } } }