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

url = "https://platform.ankra.app/api/v1/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.

Headers

authorization
string | null

Path Parameters

credential_name
string
required
Maximum string length: 253

Response

Successful Response

success
boolean
default:true