Skip to main content
DELETE
/
org
/
helm
/
credentials
/
{credential_name}
Delete Registry Credential Endpoint
import requests

url = "https://platform.ankra.app/org/helm/credentials/{credential_name}"

headers = {"Authorization": "Bearer <token>"}

response = requests.delete(url, headers=headers)

print(response.text)
{
  "success": true
}

Authorizations

Authorization
string
header
required

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

Path Parameters

credential_name
string
required

Cookies

ankra_session
string | null
ankra_refresh
string | null

Response

Successful Response

success
boolean
default:true