action clickmeter_data_points_get_statistics_single { label: "Retrieve statistics about this datapoint for a timeframe" provider: clickmeter method: GET path: "/datapoints/{id}/aggregated" encoding: json input: { type: "object" properties: { fromDay: { type: "string" } hourly: { type: "boolean" } id: { type: "integer" format: "int64" } timeFrame: { type: "string" enum: ["today", "yesterday", "last7", "last30", "lastmonth", "currentmonth", "previousmonth", "last90", "last120", "last180", "last12months", "lastyear", "currentyear", "beginning", "custom"] } toDay: { type: "string" } } required: ["id", "timeFrame"] additionalProperties: false } output: { 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" } } } }