const response = await fetch('https://cloud-api.calyptia.com/v1/environments/{environmentID}', {
method: 'PATCH',
headers: {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
},
body: JSON.stringify({}),
});
const data = await response.json();