action clickmeter_retargeting_get_datapoints { label: "List of all the datapoints associated to the retargeting script." provider: clickmeter method: GET path: "/retargeting/{id}/datapoints" encoding: json input: { type: "object" properties: { createdAfter: { type: "string" } createdBefore: { type: "string" } id: { type: "integer" format: "int64" } 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" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { entities: { type: "array" items: { type: "object" properties: { id: { type: "integer" format: "int64" } uri: { type: "string" } } } } } } }