Python
import requests url = "https://platform.ankra.app/api/v1/org/clusters/imported/{cluster_id}/addons/available" headers = {"Authorization": "Bearer <token>"} response = requests.get(url, headers=headers) print(response.text)
{ "git_repository_resource": true, "addons": [], "credentials": [] }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful Response
Show child attributes