Config section set

Update config section set

PATCHhttps://cloud-api.calyptia.com/v1/pipelines/{pipelineID}/config_section_set
Authorization
Path parameters
pipelineID*string (uuid)
Body
itemsstring (uuid)
Response

Updated

Request
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();