Add Agent Custom Field

Adds a new agent custom field.

POST /assetmgmt/assets/customfields

Headers

  • Authorization: Bearer {hash string returned from Authentication}

Body

  • Content-Type: x-www-form-urlencoded
  • The body of the request must include the following:

    "key": "FieldName",

    "value": "YourNewFieldName"

    "key": "FieldType",

    "value": "string"

Model Schema

Field

Datatype

Filterable

Sortable

key

string

 

 

value

string

 

 

Sample Request Model

[
{ "key": "FieldName", "value": "YourNewFieldName" }
,
{ "key": "FieldType", "value": "string" }
]