action osisoft_attribute_template_get_by_path { label: "Retrieve an attribute template by path." description: "This method returns an attribute template based on the hierarchical path associated with it, and should be used when a path has been received from a separate part of the PI System for use in the PI Web API. Users should primarily search with the WebID when available." provider: osisoft method: GET path: "/attributetemplates" encoding: json input: { type: "object" properties: { path: { type: "string" } selectedFields: { type: "string" } webIdType: { type: "string" } } required: ["path"] additionalProperties: false } output: { type: "object" additionalProperties: true } }