List deployments awaiting removal confirmation
GET
/api/v1/deployments/awaiting-removal
const url = 'http://localhost:3000/api/v1/deployments/awaiting-removal';const options = {method: 'GET', 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 GET \ --url http://localhost:3000/api/v1/deployments/awaiting-removal \ --header 'X-API-Key: <X-API-Key>'Lists deployments that were deleted but that at least one device has not yet confirmed removing. A deployment leaves this list only when every device has reported removed; a device that reported failed keeps it here, because the workload may still be running.
Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”Deployments awaiting removal retrieved successfully
Forbidden — caller lacks required permission