Skip to content

Abort an in-flight rollout

POST
/api/v1/deployments/{id}/rollback
curl --request POST \
--url http://localhost:3000/api/v1/deployments/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/rollback \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <X-API-Key>' \
--data '{ "reason": "Canary devices reported repeated container crashes" }'

Aborts the in-flight rollout and marks it rolled back. This does not redeploy a previous application version.

id
required
string format: uuid

Deployment UUID

Media type application/json
object
reason

Operator-supplied reason for the rollback, recorded in the audit trail

string
<= 500 characters
Example
Canary devices reported repeated container crashes

Rollback triggered successfully

Forbidden — caller lacks required permission

Deployment not found