action clickmeter_tags_get { label: "List of all the groups associated to the user filtered by this tag." provider: clickmeter method: GET path: "/tags" encoding: json input: { type: "object" properties: { datapoints: { type: "string" } groups: { type: "string" } limit: { type: "integer" format: "int32" } name: { type: "string" } offset: { type: "integer" format: "int32" } type: { type: "string" enum: ["tp", "tl", "dp", "gr"] } } additionalProperties: false } output: { type: "object" properties: { entities: { type: "array" items: { type: "object" properties: { id: { type: "integer" format: "int64" } uri: { type: "string" } } } } } } }