Python
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 } }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
x >= 1
1 <= x <= 100
name
url
created_at
updated_at
chart_count
last_indexed_at
is_global
asc
desc
Successful Response
Show child attributes