action clickmeter_data_points_get_statistics_all_list { label: "Retrieve statistics about all datapoints of this customer for a timeframe grouped by some temporal entity (day/week/month)" provider: clickmeter method: GET path: "/datapoints/aggregated/list" encoding: json input: { type: "object" properties: { favourite: { type: "boolean" } fromDay: { type: "string" } groupBy: { type: "string" enum: ["week", "month"] } status: { type: "string" enum: ["deleted", "active", "paused", "spam"] } tag: { type: "string" } timeFrame: { type: "string" enum: ["today", "yesterday", "last7", "last30", "lastmonth", "currentmonth", "previousmonth", "last90", "last120", "last180", "last12months", "lastyear", "currentyear", "beginning", "custom"] } toDay: { type: "string" } type: { type: "string" enum: ["tp", "tl"] } } required: ["timeFrame", "type"] additionalProperties: false } output: { type: "object" properties: { entities: { type: "array" items: { type: "object" properties: { activityDay: { type: "string" description: " (A date in \"YmdHis\" format)" } commissionsCost: { type: "number" format: "double" } conversionsCost: { type: "number" format: "double" } conversionsValue: { type: "number" format: "double" } convertedClicks: { type: "integer" format: "int64" } entityData: { type: "object" properties: {} } entityId: { type: "string" } fromDay: { type: "string" description: " (A date in \"YmdHis\" format)" } hourlyBreakDown: { type: "object" } lastHitDate: { type: "string" description: " (A date in \"YmdHis\" format)" } spiderHitsCount: { type: "integer" format: "int64" } toDay: { type: "string" description: " (A date in \"YmdHis\" format)" } totalClicks: { type: "integer" format: "int64" } totalViews: { type: "integer" format: "int64" } uniqueClicks: { type: "integer" format: "int64" } uniqueConversions: { type: "integer" format: "int64" } uniqueViews: { type: "integer" format: "int64" } } } } } } }