• Home
  • Dynatrace API
  • Configuration
  • Plugins
  • DELETE plugin ZIP file

Plugins API - DELETE plugin ZIP file

Deletes the ZIP file of the specified plugin from Dynatrace.

Deletion of a plugin file uninstalls the plugin, making it unavailable for use.

DELETEManagedDynatrace for Governmenthttps://{your-domain}/e/{your-environment-id}/api/config/v1/plugins/{id}/binary
SaaShttps://{your-environment-id}.live.dynatrace.com/api/config/v1/plugins/{id}/binary
Environment ActiveGatehttps://{your-activegate-domain}/e/{your-environment-id}/api/config/v1/plugins/{id}/binary

Authentication

To execute this request, you need an access token with WriteConfig scope.

To learn how to obtain and use it, see Tokens and authentication.

Parameters

ParameterTypeDescriptionInRequired
idstring

The ID of the plugin to be deleted.

pathrequired

Response

Response codes

CodeDescription
204

Deleted. Response doesn't have a body.

Example

In this example, the request deletes the MathPlugin with the ID of custom.remote.python.simple_math from the mySampleEnv environment. The response code of 204 indicates that the deletion was successful.

The API token is passed in the Authorization header.

Curl

bash
curl -X DELETE \ https://mySampleEnv.live.dynatrace.com/api/config/v1/plugins/custom.remote.python.simple_math/binary \ -H 'Authorization: Api-Token dt0c01.abc123.abcdefjhij1234567890'

Request URL

plaintext
https://mySampleEnv.live.dynatrace.com/api/config/v1/plugins/custom.remote.python.simple_math/binary

Response code

204