Skip to main content
GET
/
org
/
helm
/
registries
List Helm Registries Endpoint
import requests

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

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

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

print(response.text)
{
  "result": [
    {
      "name": "<string>",
      "url": "<string>",
      "indexing": true,
      "chart_count": 123,
      "is_global": true,
      "credential_name": "<string>",
      "delete_permanently": false,
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "last_indexed_at": "2023-11-07T05:31:56Z",
      "next_sync_at": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "page": 123,
    "page_size": 123,
    "total_pages": 123,
    "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:20
Required range: 1 <= x <= 100
search
string | null
sort_by
enum<string> | null
Available options:
name,
url,
created_at,
updated_at,
chart_count,
last_indexed_at,
is_global
sort_order
enum<string> | null
Available options:
asc,
desc

Cookies

ankra_session
string | null
ankra_refresh
string | null

Response

Successful Response

result
(ExtendedOCIRegistry · object | ExtendedHTTPRegistry · object)[]
required
pagination
Pagination · object
required