Start a deployment
POST
/api/v1/deployments/{id}/start
const url = 'http://localhost:3000/api/v1/deployments/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/start';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/start \ --header 'X-API-Key: <X-API-Key>'Starts a deployment, triggering workload distribution to target devices.
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 ”Deployment started successfully
Forbidden — caller lacks required permission
Deployment not found