const response = await fetch('https://cloud-api.calyptia.com/v1/core_instances/{coreInstanceID}/cluster_objects', {
method: 'POST',
headers: {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
},
body: JSON.stringify({
"name": "text",
"kind": "namespace"
}),
});
const data = await response.json();