action clickmeter_groups_get_datapoints_summary { label: "Retrieve statistics about a subset of datapoints for a timeframe with datapoints data" provider: clickmeter method: GET path: "/groups/{id}/aggregated/summary" encoding: json input: { type: "object" properties: { favourite: { type: "boolean" } fromDay: { type: "string" } id: { type: "integer" format: "int64" } limit: { type: "integer" format: "int32" } offset: { type: "integer" format: "int32" } sortBy: { type: "string" } sortDirection: { type: "string" enum: ["asc", "desc"] } status: { type: "string" enum: ["deleted", "active"] } tag: { type: "string" } textSearch: { 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: ["id", "timeFrame"] additionalProperties: false } output: { type: "object" properties: { count: { type: "integer" format: "int64" } limit: { type: "integer" format: "int32" } offset: { type: "integer" format: "int64" } result: { 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" } } } } } } }