Skip to main content
GET
/
api
/
v1
/
org
/
clusters
/
imported
/
{cluster_id}
/
addons
/
available
List Available Cluster Addons Endpoint
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": []
}

Authorizations

Authorization
string
header
required

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

Headers

authorization
string | null

Path Parameters

cluster_id
string<uuid4>
required

Response

Successful Response

git_repository_resource
boolean
required
addons
AddonResponseItem · object[]
credentials
GithubCredentialsResponse · object[]