action influxdata_post_orgs_idsecrets { label: "Delete secrets from an organization" provider: influxdata method: POST path: "/orgs/{orgID}/secrets/delete" encoding: json input: { type: "object" properties: { orgID: { type: "string" } secrets: { type: "array" items: { type: "string" } } } required: ["orgID"] additionalProperties: false } output: { type: "object" additionalProperties: true } }