Skip to main content

Get value for a Global Parameter

Select

SaaS
Customer Managed

This operation returns values for specified global parameters.

More Details

Request Body required
  • globalParamsRequestList string[]

    List of comma separated global params

Responses

OK


Schema
  • globalParamsResultList object[]
  • name string

    Global Param Name

  • value string

    Value of the global parameter

POST /commserv/globalparams    

Authorization

type: apiKeyname: Authtokenin: header

Request

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

{
"globalParamsRequestList": [
"CI_STATE_FAILED",
"CI_STATE_SKIPPED",
"AppMgrThreadIdleTimeout"
]
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/CommServ/GlobalParams' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"globalParamsRequestList": [
"CI_STATE_FAILED",
"CI_STATE_SKIPPED",
"AppMgrThreadIdleTimeout"
]
}'