action influxdata_get_documents_templates { label: "List all templates" provider: influxdata method: GET path: "/documents/templates" encoding: json input: { type: "object" properties: { org: { type: "string" } orgID: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { documents: { type: "array" items: { type: "object" required: ["id", "meta"] properties: { id: { type: "string" } labels: { type: "array" items: { type: "object" properties: { id: { type: "string" } name: { type: "string" } orgID: { type: "string" } properties: { type: "object" description: "Key/Value pairs associated with this label. Keys can be removed by sending an update with an empty value." } } } } links: { type: "object" properties: { self: { type: "string" format: "uri" description: "URI of resource." } } } meta: { type: "object" required: ["name", "version"] properties: { createdAt: { type: "string" format: "date-time" } description: { type: "string" } name: { type: "string" } templateID: { type: "string" } type: { type: "string" } updatedAt: { type: "string" format: "date-time" } version: { type: "string" } } } } } } } } }