Skip to content

Clear the release history of a deployment

DELETE
/v1/apps/{appName}/deployments/{deploymentName}/history
curl --request DELETE \
--url https://api.aetherpush.com/v1/apps/example/deployments/example/history \
--header 'Authorization: Bearer <token>'

Permanently deletes all releases on the deployment. Cannot be undone. Requires the deployments.manage permission (Owner or Admin).

appName
required
string
deploymentName
required
string

History cleared.

Insufficient permissions (deployments.manage required).

Media typeapplication/json
object
error
required

Human-readable error message.

string
requestId

Unique identifier for the request, also exposed as the X-Request-Id response header.

string
Example
{
"error": "The requested resource was not found.",
"requestId": "req_abc123"
}

App or deployment not found.

Media typeapplication/json
object
error
required

Human-readable error message.

string
requestId

Unique identifier for the request, also exposed as the X-Request-Id response header.

string
Example
{
"error": "The requested resource was not found.",
"requestId": "req_abc123"
}