latestOpenAPI 3.1.02026-08-1076186318.8 KB

ab648a80ca4d

Application Deployments

Manually deploy an application

post/applications/deployments

Request body

app_idstring required
branchstring
docker_imagestring
is_restartboolean

Set true if you want to release without building your app.

Example request

{
  "app_id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
  "branch": "main",
  "docker_image": "myimage:v2"
}

Response

Deployment created successfully

Example response

{
  "deployment": {
    "id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1"
  }
}