action elmah_deployments_delete {
label: "Delete a deployment by its ID."
description: "This endpoint doesn't clear the version number of messages already annotated with this deployment version.
Required permission: `deployments_delete`"
provider: elmah
method: DELETE
path: "/v3/deployments/{id}"
encoding: json
input: {
type: "object"
properties: {
id: {
type: "string"
}
}
required: ["id"]
additionalProperties: false
}
output: {
type: "object"
additionalProperties: true
}
}