Skip to main content
POST
/
deployments
/
apply
Queue deployment apply run
curl --request POST \
  --url https://your-domain.com/api/client/v1/deployments/apply \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "configuration_id": "<string>",
  "idempotency_key": "<string>"
}
'
{
  "ok": true,
  "run": {
    "id": "<string>",
    "status": "<string>",
    "configuration_id": "<string>",
    "configuration_version_id": "<string>",
    "configuration_version_number": 123,
    "resource_count": 123,
    "queue_position": 123,
    "created_at": 123,
    "server_count": 123,
    "proxy_count": 123,
    "swiftbase_count": 123
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json
configuration_id
string
required
idempotency_key
string
Required string length: 1 - 128

Response

Queued

ok
boolean
run
object