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