Python
import requests url = "https://platform.ankra.app/api/v1/clusters/import" payload = { "name": "<string>" } headers = {"Content-Type": "application/json"} response = requests.post(url, json=payload, headers=headers) print(response.json())
{ "name": "<string>", "cluster_id": "<string>", "organisation_id": "<string>", "import_command": "<string>", "errors": [] }
Show child attributes
Successful Response