action influxdata_get_tasks_idowners { label: "List all owners of a task" provider: influxdata method: GET path: "/tasks/{taskID}/owners" encoding: json input: { type: "object" properties: { taskID: { type: "string" } } required: ["taskID"] additionalProperties: false } output: { type: "object" properties: { links: { type: "object" properties: { self: { type: "string" format: "uri" } } } users: { type: "array" items: { type: "object" } } } } }