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
}
'Apply a release to the project, creating or updating documents from the release files (v1 projects only).
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
}
'Personal access token is obtained through your profile
Project unique identifier
Release applied successfully
Was this page helpful?