Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Version published after converting to the new editor


Get status of Pages Support for specified repository and branch/tag

Table of Content Zone
locationtop
Code Block
languageperl
themeConfluence
GET /rest/latest/pages-settings/{projectKey}/{repositorySlug}/enabled


Expand
titleExample Request

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


Expand
titleExample Response


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


Enable Pages support for specified repository and branch/tag

Code Block
languageperl
themeConfluence
PUT /rest/latest/pages-settings/{projectKey}/{repositorySlug}/enabled


Expand
titleExample Request

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


Expand
titleExample Response


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


Disable Pages support for specified repository and branch/tag

Code Block
languageperl
themeConfluence
DELETE /rest/latest/pages-settings/{projectKey}/{repositorySlug}/enabled


Expand
titleExample Request

curl -u username:password -H "Content-Type:application/json" -X DELETEhttp://bitbucket.example.com/rest/latest/pages-settings/PROJECT_1/rep_1/enabled?refId=refs/heads/master


Expand
titleExample Response


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


Enable Pages support for any new branch in the specified repository

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


Expand
titleExample Request

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


Expand
titleExample Response


Code Block
languagejs
{"repositoryId":1,"isEnabledForBranches":false,"isEnabledForTags":true}


Disable Pages support for new branches in the specified repository

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


Expand
titleExample Request

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


Expand
titleExample Response


Code Block
languagejs
{"repositoryId":1,"isEnabledForBranches":false,"isEnabledForTags":true}


Enable Pages support for any new tag in the specified repository

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


Expand
titleExample Request

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


Expand
titleExample Response


Code Block
languagejs
{"repositoryId":1,"isEnabledForBranches":false,"isEnabledForTags":true}


Disable Pages support for new tags in the specified repository

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


Expand
titleExample Request

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


Expand
titleExample Response


Code Block
languagejs
{"repositoryId":1,"isEnabledForBranches":false,"isEnabledForTags":false}



...