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

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

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

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

print(response.text)
{
  "errors": []
}

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

Body

application/json
username
string
required
password
string
required

Response

Successful Response

errors
ResourceError · object[]