action clickmeter_data_points_count { label: "Count the datapoints associated to the user" provider: clickmeter method: GET path: "/datapoints/count" encoding: json input: { type: "object" properties: { createdAfter: { type: "string" } createdBefore: { type: "string" } onlyFavorites: { type: "boolean" } status: { type: "string" enum: ["deleted", "active", "paused", "spam"] } tags: { type: "string" } textSearch: { type: "string" } type: { type: "string" enum: ["tp", "tl"] } } additionalProperties: false } output: { type: "object" properties: { count: { type: "integer" format: "int64" } } } }