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