Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.



Get status of whether Pages is enabled for specified repository and branch/tag

perlExample Request
Code Block
language
GET /rest/pages/latest/pages-settings/{projectKey}/{repositorySlug}/enabled
Expand
title

Example Request

Code Block
languagebash
curl -u username:password -H "Content-Type:application/json" http://bitbucket.example.com/rest/pages/latest/pages-settings/PROJECT_1/rep_1/enabled?refId=refs/heads/master
Expand
title

Example Response

js
Code Block
language
json
{"repositoryId":1,"refId":"refs/heads/master","isEnabled":true}

Enable Pages for specified repository and branch/tag

curl -u
Code Block
languageperl
PUT /rest/pages/latest/pages-settings/{projectKey}/{repositorySlug}/enabled
Expand
titleExample Request

Example Request

Code Block
languagebash
 curl -u username:password -H "Content-Type:application/json" -X PUT http://bitbucket.example.com/rest/pages/latest/pages-settings/PROJECT_1/rep_1/enabled?refId=refs/heads/master
Expand
title

Example Response

js
Code Block
language
json
{"repositoryId":1,"refId":"refs/heads/master","isEnabled":true}

Disable Pages for

...

specific repository and branch/tag

Example Request
Code Block
languageperl
DELETE /rest/pages/latest/pages-settings/{projectKey}/{repositorySlug}/enabled
Expand
title

Example Request

Code Block
languagebash
curl -u username:password -H "Content-Type:application/json" -X DELETE http://bitbucket.example.com/rest/pages/latest/pages-settings/PROJECT_1/rep_1/enabled?refId=refs/heads/master
Expand
title

Example Response

js
Code Block
language
json
{"repositoryId":1,"refId":"refs/heads/master","isEnabled":false}

Enable Pages support for any new branch in the specified repository

Example Request
Code Block
languageperl
PUT /rest/pages/latest/pages-settings/{projectKey}/{repositorySlug}/enabled-for-new-branches
Expand
title

Example Request

Code Block
languagebash
curl -u username:password -H "Content-Type:application/json" -X PUT http://bitbucket.example.com/rest/pages/latest/pages-settings/PROJECT_1/rep_1/enabled-for-new-branches
Expand
title

Example Response

js
Code Block
language
json
{"repositoryId":1,"isEnabledForBranches":false,"isEnabledForTags":true}

Disable Pages support for new branches in the specified repository

title
Code Block
languageperl
DELETE /rest/pages/latest/pages-settings/{projectKey}/{repositorySlug}/enabled-for-new-branches
Expand

Example Request

expand
Code Block
curl -u username:password -H "Content-Type:application/json" -X DELETE http://bitbucket.example.com/rest/pages/latest/pages-settings/PROJECT_1/rep_1/enabled-for-new-branches
title

Example Response

js
Code Block
language
json
{"repositoryId":1,"isEnabledForBranches":false,"isEnabledForTags":true}

Enable Pages support for any new tag in the specified repository

Code Block
languageperl
PUT /rest/pages/latest/pages-settings/{projectKey}/{repositorySlug}/enabled-for-new-tags

Example Request

Expandcode
titlelanguageExample Requestbash
curl -u username:password -H "Content-Type:application/json" -X
PUT http
 PUT http://bitbucket.example.com/rest/pages/latest/pages-settings/PROJECT_1/rep_1/enabled-for-new-tags
Expand
title

Example Response

js
Code Block
language
json
{"repositoryId":1,"isEnabledForBranches":false,"isEnabledForTags":true}

Disable Pages support for new tags in the specified repository

Example Request
Code Block
languageperl
DELETE /rest/pages/latest/pages-settings/{projectKey}/{repositorySlug}/enabled-for-new-tags
Expand
title

Example Request

title
Code Block
languagebash
curl -u username:password -H "Content-Type:application/json" -X
DELETE http
 DELETE http://bitbucket.example.com/rest/pages/latest/pages-settings/PROJECT_1/rep_1/enabled-for-new-tags
Expand

Example Response

js
Code Block
language
json
{"repositoryId":1,"isEnabledForBranches":false,"isEnabledForTags":false}