Update Agent Custom Field Value
Updates the value of an existing custom field.
PUT /assetmgmt/assets/{agentId}/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": "FieldValue".
Model Schema
|
Field |
Datatype |
Filterable |
Sortable |
|
key |
string |
|
|
|
value |
string |
|
|
Sample Request Model
[
{"key": "FieldValue",
"value": "string"
}
]