action beezup_get_tracking_status { label: "Get the global synchronization status of clicks and orders" description: "Clicks and orders are eventually consistent. \\\nThis operation gets the current global state of projections.\n" provider: beezup method: GET path: "/v2/user/analytics/tracking/status" encoding: json output: { type: "object" required: ["clickSynchronizationUtcDate", "marketplaceOrderSynchonizationUtcDate", "orderSynchonizationUtcDate"] 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" } } } }