GET apioauth/tooltrack/asset?tagId={tagId}
Query a tool track asset using the tag id
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
tagId |
The tag id queried |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
A QueryToolTrackAssetResponse
QueryToolTrackAssetResponseName | Description | Type | Additional information |
---|---|---|---|
TagId |
The tag id |
string |
None. |
Pct |
The PCT |
string |
None. |
PatDueDate |
When the PAT is due |
date |
None. |
Name |
The tool name |
string |
None. |
Notes |
Any notes for a tool |
string |
None. |
Photos |
A collection of photos |
Collection of ToolTrackPhoto |
None. |
Response Formats
application/json, text/json
Sample:
{ "TagId": "sample string 1", "Pct": "sample string 2", "PatDueDate": "2025-04-27T16:33:49.8171583+00:00", "Name": "sample string 3", "Notes": "sample string 4", "Photos": [ { "PhotoId": 1, "PhotoUrl": "sample string 2", "PhotoIndex": 3, "PhotoName": "sample string 4" }, { "PhotoId": 1, "PhotoUrl": "sample string 2", "PhotoIndex": 3, "PhotoName": "sample string 4" } ] }
application/xml, text/xml
Sample:
<QueryToolTrackAssetResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <TagId>sample string 1</TagId> <Pct>sample string 2</Pct> <PatDueDate>2025-04-27T16:33:49.8171583+00:00</PatDueDate> <Name>sample string 3</Name> <Notes>sample string 4</Notes> <Photos> <ToolTrackPhoto> <PhotoId>1</PhotoId> <PhotoUrl>sample string 2</PhotoUrl> <PhotoIndex>3</PhotoIndex> <PhotoName>sample string 4</PhotoName> </ToolTrackPhoto> <ToolTrackPhoto> <PhotoId>1</PhotoId> <PhotoUrl>sample string 2</PhotoUrl> <PhotoIndex>3</PhotoIndex> <PhotoName>sample string 4</PhotoName> </ToolTrackPhoto> </Photos> </QueryToolTrackAssetResponse>