{ "opencollection": "1.0.0", "info": { "name": "AppDynamics Alert and Respond Actions API", "version": "23.x" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Actions", "type": "folder" }, "items": [ { "info": { "name": "List actions for an application", "type": "http" }, "http": { "method": "GET", "url": "https://{controller-host}/controller/alerting/rest/v1/applications/:applicationId/actions", "params": [ { "name": "applicationId", "value": "", "type": "path", "description": "The numeric ID of the business application." } ] }, "docs": "Returns all automated response actions configured for the specified application including email actions, HTTP request actions, and custom script actions." }, { "info": { "name": "Create an action", "type": "http" }, "http": { "method": "POST", "url": "https://{controller-host}/controller/alerting/rest/v1/applications/:applicationId/actions", "params": [ { "name": "applicationId", "value": "", "type": "path", "description": "The numeric ID of the business application." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new automated response action for the specified application." }, { "info": { "name": "Get a specific action", "type": "http" }, "http": { "method": "GET", "url": "https://{controller-host}/controller/alerting/rest/v1/applications/:applicationId/actions/:actionId", "params": [ { "name": "applicationId", "value": "", "type": "path", "description": "The numeric ID of the business application." }, { "name": "actionId", "value": "", "type": "path", "description": "The numeric ID of the automated response action." } ] }, "docs": "Returns the full configuration for a specific automated response action." }, { "info": { "name": "Update an action", "type": "http" }, "http": { "method": "PUT", "url": "https://{controller-host}/controller/alerting/rest/v1/applications/:applicationId/actions/:actionId", "params": [ { "name": "applicationId", "value": "", "type": "path", "description": "The numeric ID of the business application." }, { "name": "actionId", "value": "", "type": "path", "description": "The numeric ID of the automated response action." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates an existing automated response action with the provided configuration." }, { "info": { "name": "Delete an action", "type": "http" }, "http": { "method": "DELETE", "url": "https://{controller-host}/controller/alerting/rest/v1/applications/:applicationId/actions/:actionId", "params": [ { "name": "applicationId", "value": "", "type": "path", "description": "The numeric ID of the business application." }, { "name": "actionId", "value": "", "type": "path", "description": "The numeric ID of the automated response action." } ] }, "docs": "Deletes the specified automated response action from the application." } ] } ], "bundled": true }