import requests
url = "https://platform.ankra.app/api/v1/clusters/{cluster_id}/kubernetes/resources/helm/get"
payload = { "resource_requests": [
{
"namespace": "<string>",
"release_name": "<string>",
"all_namespaces": False,
"filter_regex": "<string>",
"limit": 123,
"continue_token": "<string>"
}
] }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)