PATCH apioauth/tooltrack/asset?tagId={tagId}
Update a tool track asset's details.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
tagId |
The id of the tag to update |
string |
Required |
Body Parameters
A PatchToolTackAssetRequest
PatchToolTackAssetRequestName | Description | Type | Additional information |
---|---|---|---|
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. |
Request Formats
application/json, text/json
Sample:
{ "Pct": "sample string 1", "PatDueDate": "2025-04-27T15:45:41.5424387+00:00", "Name": "sample string 2", "Notes": "sample string 3" }
application/xml, text/xml
Sample:
<PatchToolTackAssetRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Pct>sample string 1</Pct> <PatDueDate>2025-04-27T15:45:41.5424387+00:00</PatDueDate> <Name>sample string 2</Name> <Notes>sample string 3</Notes> </PatchToolTackAssetRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
200 on success
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean>true</boolean>