Skip to main content

Push Network Configuration on Entity

This API can be used to push the network configuration to the servers and server groups.

Request Body
  • entity object[]
  • clientId int64

    Client ID whose configuration has to be pushed

  • clientGroupId int64

    Client Group ID to push network configuration

Responses

OK


Schema
  • processinginstructioninfo object
  • attributes object[]
  • name string
  • value string
  • entityResponse object[]
  • errorString string
  • warningCode integer
  • errorCode integer
  • warningMessage string
POST /pushnetworkconfiguration    

Authorization

type: apiKeyname: Authtokenin: header

Request

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

{
"entity": [
{
"clientId": 0,
"clientGroupId": 0
}
]
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/PushNetworkConfiguration' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"entity": [
{
"clientId": 0,
"clientGroupId": 0
}
]
}'