Update Agent Custom Field Name
Updates the name of an existing custom field.
PUT /assetmgmt/assets/customfields/{fieldName}
- Does not accept filter and sort expressions.
- This is an action API; no business data is returned or changed.
Headers
- Authorization: Bearer {hash string returned from Authentication}
Body
- The body of the request must include:
"key": "NewFieldName","value": "string"
Model Schema
|
Field |
Datatype |
Filterable |
Sortable |
|
key |
string |
|
|
|
value |
string |
|
|
Sample Request Model
[
{"key": "NewFieldName",
"value": "string"
}
]