const response = await fetch('https://cloud-api.calyptia.com/v1/pipelines/{pipelineID}/config_section_set', {
method: 'PATCH',
headers: {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
},
body: JSON.stringify([
"123e4567-e89b-12d3-a456-426614174000"
]),
});
const data = await response.json();