Skip to main content

Update Agent Properties

Select

SaaS
Customer Managed

This operation updates the properties associated with an agent.

More Details

Request Body
  • association object
  • entity object[]
  • clientName string
  • appName string
  • agentProperties object
  • idaActivityControl object
  • activityControlOptions object[]
  • activityType integer
  • enableAfterADelay boolean
  • enableActivityType boolean
Responses

OK


Schema
  • processinginstructioninfo object
  • attributes object[]
  • name string
  • value string
  • response object[]
  • errorCode integer
POST /agent    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
Security Scheme
token
Body

{
"association": {
"entity": [
{
"clientName": "string",
"appName": "string"
}
]
},
"agentProperties": {
"idaActivityControl": {
"activityControlOptions": [
{
"activityType": 0,
"enableAfterADelay": true,
"enableActivityType": true
}
]
}
}
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/Agent' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"association": {
"entity": [
{
"clientName": "string",
"appName": "string"
}
]
},
"agentProperties": {
"idaActivityControl": {
"activityControlOptions": [
{
"activityType": 0,
"enableAfterADelay": true,
"enableActivityType": true
}
]
}
}
}'