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