Skip to main content
GET
/
org
/
helm
/
credentials
List Registry Credentials Endpoint
import requests

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

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

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

print(response.text)
{
  "credentials": [
    {
      "id": "<string>",
      "name": "<string>",
      "created_at": "<string>"
    }
  ],
  "total_count": 123
}

Authorizations

Authorization
string
header
required

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

Query Parameters

page
integer
default:1
Required range: x >= 1
page_size
integer
default:100
Required range: 1 <= x <= 100

Cookies

ankra_session
string | null
ankra_refresh
string | null

Response

Successful Response

credentials
RegistryCredentialSummary · object[]
required
total_count
integer
required