Skip to main content
POST
/
api
/
projects
/
{projectId}
/
releases
/
deploy
Deploy a release
curl --request POST \
  --url https://api.example.com/api/projects/{projectId}/releases/deploy \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "releaseId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "environmentId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "comment": "<string>"
}
'

Authorizations

Authorization
string
header
required

Personal access token is obtained through your profile

Path Parameters

projectId
string<uuid>
required

Project unique identifier

Body

application/json
releaseId
string<uuid>
required

Release ID to deploy

environmentId
string<uuid>
required

Target environment ID

comment
string | null

Deployment comment or description

Response

200

Deployment initiated successfully