action influxdata_get_documents_templates_id { label: "Retrieve a template" provider: influxdata method: GET path: "/documents/templates/{templateID}" encoding: json input: { type: "object" properties: { templateID: { type: "string" } } required: ["templateID"] additionalProperties: false } output: { type: "object" required: ["content", "id", "meta"] properties: { content: { type: "object" } 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" } } } } } }