action clickmeter_groups_count { label: "Count the groups associated to the user." provider: clickmeter method: GET path: "/groups/count" encoding: json input: { type: "object" properties: { createdAfter: { type: "string" } createdBefore: { type: "string" } status: { type: "string" enum: ["deleted", "active"] } tags: { type: "string" } textSearch: { type: "string" } write: { type: "boolean" } } additionalProperties: false } output: { type: "object" properties: { count: { type: "integer" format: "int64" } } } }