action clickmeter_data_points_get { label: "List of all the datapoints associated to the user" provider: clickmeter method: GET path: "/datapoints" encoding: json input: { type: "object" properties: { createdAfter: { type: "string" } createdBefore: { type: "string" } limit: { type: "integer" format: "int32" } offset: { type: "integer" format: "int32" } onlyFavorites: { type: "boolean" } sortBy: { type: "string" } sortDirection: { type: "string" enum: ["asc", "desc"] } status: { type: "string" enum: ["deleted", "active", "paused", "spam"] } tags: { type: "string" } textSearch: { type: "string" } type: { type: "string" enum: ["tp", "tl"] } } additionalProperties: false } output: { type: "object" properties: { entities: { type: "array" items: { type: "object" properties: { id: { type: "integer" format: "int64" } uri: { type: "string" } } } } } } }