Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How to enable “branch deletion on merge” for Bitbucket projects via REST API

Priscille Gwet August 11, 2022

How to enable “branch deletion on merge” for Bitbucket projects via REST API?

Screen Shot 2022-08-11 at 9.15.39 PM.png

2 answers

1 accepted

0 votes
Answer accepted
Priscille Gwet September 9, 2022

I found the answer:

 

Bitbucket Server 7.15

Branch deletion on merge

New Java and REST API methods have been added to configure Branch deletion on merge for Project and Repository.

DeleteAfterMergeConfigurationService.deleteConfiguration(scope), DeleteAfterMergeConfigurationService.getConfiguration(scope) and DeleteAfterMergeConfigurationService.setConfiguration(DeleteAfterMergeConfigurationRequest) introduce the ability to configure Branch deletion on merge feature.

New REST endpoints:

PROJECT

  • GET /rest/branch-utils/latest/projects/{key}/delete-after-merge

get if the feature is enabled for a Project.

  • POST /rest/branch-utils/latest/projects/{key}/delete-after-merge

enable or disable the feature for a Project.

REPOSITORY

  • GET /rest/branch-utils/latest/projects/{key}/repos/{slug}/delete-after-merge

get if the configuration is enabled for a Repository.

  • POST /rest/branch-utils/latest/projects/{key}/repos/{slug}/delete-after-merge

enable or disable the configuration for a Repository.

  • DELETE /rest/branch-utils/latest/projects/{key}/repos/{slug}/delete-after-merge

delete the configuration for a Repository.

0 votes
jameswise August 11, 2022

In order to enable “branch deletion on merge” for Bitbucket projects via REST API, you will need to make a PUT request to the following endpoint:

/rest/api/1.0/projects/{projectKey}/repos/{repositorySlug}/branch-utils/delete-on-merge-config

In the request body, you will need to specify the following JSON:

{
"deleteOnMerge": true
}

Where {projectKey} is the key of the Bitbucket project and {repositorySlug} is the slug of the repository.

If the request is successful, the response will return a 204 status code.

Priscille Gwet August 14, 2022

Thanks. It did not work. I got a 404 status code.

jameswise August 15, 2022

404 status code means the endpoint could not be found. Check the project key and repository slug to make sure they are correct.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events