Skip to main content
POST
/
api
/
v1
/
clusters
/
{cluster_id}
/
kubernetes
/
resources
/
helm
/
uninstall
Uninstall Helm Release Endpoint
import requests

url = "https://platform.ankra.app/api/v1/clusters/{cluster_id}/kubernetes/resources/helm/uninstall"

payload = {
    "release_name": "<string>",
    "namespace": "<string>"
}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
{
  "status": "<string>",
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

authorization
string | null

Path Parameters

cluster_id
string<uuid4>
required

Body

application/json
release_name
string
required
namespace
string
required

Response

Successful Response

status
string
required
message
string | null