action influxdata_post_query { label: "Query InfluxDB" provider: influxdata method: POST path: "/query" encoding: json input: { type: "object" properties: { "Accept-Encoding": { type: "string" description: "Specifies that the query response in the body should be encoded with gzip or not encoded with identity." enum: ["gzip", "identity"] } "Content-Type": { type: "string" enum: ["application/json", "application/vnd.flux"] } org: { type: "string" } orgID: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }