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