Skip to main content
POST
/
org
/
helm
/
credentials
Create Helm Registry Creds Endpoint
import requests

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

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

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

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

Authorizations

Authorization
string
header
required

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

Cookies

ankra_session
string | null
ankra_refresh
string | null

Body

application/json
name
string
required
username
string
required
password
string
required

Response

Successful Response

success
boolean
default:true
errors
ResourceError · object[]