For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Open sourceSupportFAQsDocs Home
DocumentationAPI ReferenceRelease notes
DocumentationAPI ReferenceRelease notes
  • Introduction
    • Overview
    • Authentication
  • Guides
    • Integration API routes
    • Operations Manager search APIs
    • Search API
    • URL query parameters
    • Use query parameters in API requests
  • Reference
        • GETGet application
        • GETList all applications
        • GETList changelogs
        • PUTRestart an application
        • PUTStart an application
        • PUTStop an application
        • PUTUpdate an application
        • PUTUpdate the log levels
        • PUTUpdate the properties of an application
LogoLogo
Open sourceSupportFAQsDocs Home
ReferenceApplications

Update the log levels

PUT
http://localhost:3000/applications/:name/loglevel
PUT
/applications/:name/loglevel
$curl -X PUT http://localhost:3000/applications//loglevel \
> -H "Content-Type: application/json" \
> -u "<username>:<password>" \
> -d '{}'
1{
2 "status": "OK",
3 "message": "A sample success message"
4}
Updates the log levels for an application.
Was this page helpful?
Previous

Update the properties of an application

Next
Built with

Authentication

AuthorizationBasic

Basic authentication of the form Basic <base64(username:password)>.

Path parameters

namestringRequiredformat: "^[^\/]+$"Defaults to
The name for the selected application.

Request

request body
propertiesobjectOptional

Response

The result of updating the log levels for an application.
statusenum
The status of the API request.
Allowed values:
messagestring
Message containing either confirmation of the operation or the reason for the failure of the operation.

Errors

500
Internal Server Error