Skip to main content

Set Global Parameter

This operation sets a global parameter.

Request Body
  • name string required

    Global Parameter name

  • value string required

    Value of the global parameter

Responses

OK


Schema
  • errorCode integer
POST /setglobalparam    

Authorization

type: apiKeyname: Authtokenin: header

Request

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

{
"name": "string",
"value": "string"
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/setGlobalParam' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"name": "string",
"value": "string"
}'