action clickmeter_groups_get { label: "List of all the groups associated to the user." provider: clickmeter method: GET path: "/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"] } tags: { type: "string" } textSearch: { type: "string" } write: { type: "boolean" } } additionalProperties: false } output: { type: "object" properties: { entities: { type: "array" items: { type: "object" properties: { id: { type: "integer" format: "int64" } uri: { type: "string" } } } } } } }