action clickmeter_groups_put_datapoint { label: "Create a datapoint in this group" provider: clickmeter method: POST path: "/groups/{id}/datapoints" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int64" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { id: { type: "integer" format: "int64" } uri: { type: "string" } } } }