Skip to main content
POST
/
deployments
/
runs
/
{runId}
/
resume
Resume deployment run
curl --request POST \
  --url https://your-domain.com/api/client/v1/deployments/runs/{runId}/resume \
  --header 'Authorization: Bearer <token>'
{
  "ok": true,
  "run": {
    "id": "<string>",
    "status": "<string>",
    "queue_position": 123
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

runId
string
required

Deployment run ID.

Response

Resumed

ok
boolean
run
object