Skip to main content

Modify Log File properties

This API can be used to change the log file level, file version and the file size remotely on a client .

Path Parameters
  • ClientID string required
  • LogFileName string required
Header Parameters
  • Accept string required
Request Body required
  • fileSizeInMB integer
  • fileVersions integer
  • debugLevel integer
Responses

OK


Schema
  • response object
POST /client/:clientid/log/:logfilename    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
Security Scheme
token
ClientID — path required
LogFileName — path required
Accept — header required
Body required

{
"fileSizeInMB": 0,
"fileVersions": 0,
"debugLevel": 0
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/Client/:ClientID/Log/:LogFileName' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"fileSizeInMB": 0,
"fileVersions": 0,
"debugLevel": 0
}'