Skip to main content
PUT
/
org
/
helm
/
registries
/
{registry_name}
Update Helm Registry Endpoint
import requests

url = "https://platform.ankra.app/org/helm/registries/{registry_name}"

payload = { "read_job_interval": 123 }
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

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

print(response.text)
{}

Authorizations

Authorization
string
header
required

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

Path Parameters

registry_name
string
required

Cookies

ankra_session
string | null
ankra_refresh
string | null

Body

application/json
read_job_interval
integer | null

Response

Successful Response

The response is of type UpdateHelmChartRegistryResult · object.