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

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 apply

publish
boolean
default:false

Whether to publish the applied documents immediately

Response

200

Release applied successfully