[Webinar] Discover key trends and best practices in Kubernetes observability with DevOps expert, Viktor Farcic.Register now
Our recognition in the inaugural Gartner MQ for DEM

DeleteMaintenanceTask API


This API allows the user to delete a downtime schedule in Applications Manager.

Syntax

https://[HOST]:[PORT]/AppManager/xml/DeleteMaintenanceTask?apikey=[APIKEY]&taskid=[TASKID]

Supported HTTP methods: POST

Allowed roles: Administrator, Operator

Request Parameters

The parameters involved in the API request are described below:

Field Description
apikey The key generated from "Generate API Key" option in the Settings tab.
taskid The TASKID in the AM_MAINTENANCECONFIG table

Sample Input

https://apm-prod-server:8443/AppManager/xml/DeleteMaintenanceTask?apikey=aaaaaabbbbbbccccccddddddeeeeee&taskid=10000001

Sample Output

<AppManager-response uri="/AppManager/xml/DeleteMaintenanceTask">
   <result>
      <response response-code="4000">
         <message>Maintenance Task successfully deleted.</message>
      </response>
   </result>
</AppManager-response>

Back to Top