Approve the next rollout batch
POST
/api/v1/deployments/{id}/approve-batch
const url = 'http://localhost:3000/api/v1/deployments/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/approve-batch';const options = {method: 'POST', headers: {'X-API-Key': '<X-API-Key>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url http://localhost:3000/api/v1/deployments/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/approve-batch \ --header 'X-API-Key: <X-API-Key>'Approves the next wave for a rolling rollout configured for manual approval.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string format: uuid
Deployment UUID
Responses
Section titled “ Responses ”Batch approved successfully
Forbidden — caller lacks required permission
Deployment not found