Skip to main content

Update Navigation Settings

This operation updates navigation preferences

Oganization specific preferences to be done as MSP testadmin only. If done by Tenant testadmin, includeNavItems will not be supported.

Query Parameters
  • organizationId string
Request Body
  • navSettings object
  • companySettings object[]
  • deniedNavItems string
  • includeNavItems string
  • userRole integer
Responses

OK


Schema
  • errorMessage string
  • errorCode integer
POST /navigationsettings    

Authorization

type: apiKeyname: Authtokenin: header

Request

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

{
"navSettings": {
"companySettings": [
{
"deniedNavItems": "string",
"includeNavItems": "string",
"userRole": 0
}
]
}
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/NavigationSettings' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"navSettings": {
"companySettings": [
{
"deniedNavItems": "string",
"includeNavItems": "string",
"userRole": 0
}
]
}
}'