--- title: "system.tag.getTagValue" description: "Returns an any attribute for a specific tag." --- # system.tag.getTagValue > Returns an any attribute for a specific tag. ## Description ## Syntax `system.tag. getTagValue( tagPath )` - Parameters - String `tagPath` - The full path to the tag you want to edit. :::note You can specify the Tag provider name in square brackets at the beginning of the parentPath string. Example: "[myTagProvider]MyTagsFolder". If the tag provider name is left off then the project default provider will be used. ::: - Returns - String - The value of the tag. - Scope - All ## Code Examples ```python title="Code Snippet" # Example 1: value = system.tag.getTagValue("Tag3") print value ```