action clickmeter_tags_get_groups { label: "List of all the groups associated to the user filtered by this tag." provider: clickmeter method: GET path: "/tags/{tagId}/groups" encoding: json input: { type: "object" properties: { createdAfter: { type: "string" } createdBefore: { type: "string" } limit: { type: "integer" format: "int32" } offset: { type: "integer" format: "int32" } status: { type: "string" enum: ["deleted", "active"] } tagId: { type: "integer" format: "int64" } textSearch: { type: "string" } } required: ["tagId"] additionalProperties: false } output: { type: "object" properties: { entities: { type: "array" items: { type: "object" properties: { id: { type: "integer" format: "int64" } uri: { type: "string" } } } } } } }