Git Integration for Jira Self-Managed (Data Center/Server) Documentation

Branches API

The Branches REST API will obtain list of branches associated to a Jira issue.

There are two types of users who can perform the Branches API call:

  1. Jira administrators
  2. Jira user who has all of the following:
    1. View/browse permissions to the project;
    2. View Development Tools permissions to the same project; and
    3. The repository is associated to the project.

 

Gets a set of branches from Jira issue based on the associated commit links

Url

{JiraBaseURL}/rest/gitplugin/1.0/issues/branches?key={issuekey}

Method

GET

Parameters

Field Description
issueKey String. Optional.

This is the Jira Issue Key – a concatenation of Project key and Issue number. It must contain a dash (‘-‘). The issueKey must be valid and existent.

For example: TEST-435.

Response

If the optional query is not defined, it will return ALL indexed git branches. For example: {JiraBaseURL}/rest/gitplugin/1.0/issues/branches

Example

http://jira.yourorg.com/rest/gitplugin/1.0/issues/branches?key=TEST-435

Result:
{
    "success":true,
    "branches":["master","release","TEST-435"]
}

 

If there are no commits associated with the specified task (ISSUE_KEY), no branches are going to be displayed for this request.

 

Get the list of branches bound to an issue

A different request is used to retrieve branches on the “issue” page. It includes branches whose name is associated with the issue key.

Url

{JIRA_BASE_URL}/rest/gitplugin/1.0/issuegitdetails/issue/{ISSUE_KEY}

Method

GET

Parameters

Field Description
issueKey String. Optional.

This is the Jira Issue Key – a concatenation of Project key and Issue number. It must contain a dash (‘-‘). The issueKey must be valid and existent.

For example: TEST-435.

Response

It includes branches whose name is associated with the issue. The result will show the branches on which commits exist in the specified Jira issue. It’s a set of branches to which the commits are bound to the issue they are associated with. They can be viewed in the the Git Commits tab.

Example

https://jira.yourorg.com/rest/gitplugin/1.0/issuegitdetails/issue/TEST-435

Result:
{
    "commitCount": 53,
    "repositories":[
        {
            "repoId": 12718,
            "repoName": "test-repo",
            "isGitViewerEnabled": true,
            "isRepoApiEnabled": true,
            "branches":[
                {
                    "name": "TEST-435-branch-001",
                    "gkBranchUrl": "gitkraken://repolink/d5407d...4a03c/branch/TEST-435-branch-001?url=https%3A%2F%2Fgithub.com%2FWilyCoyote%2Ftest-repo.git",
                    "glBranchUrl": "vscode://eamodio.gitlens/link/r/d5407d...4a03c/b/TEST-435-branch-001?url=https%3A%2F%2Fgithub.com%2FWilyCoyote%2Ftest-repo.git",
                    "isAheadBehindPresented": true,
                    "ahead": 2,
                    "behind": 6448,
                    "externalUrl": "https://github.com/WilyCoyote/test-repo/tree/TEST-435-branch-001"
                },
                {
                    "name": "TEST-435-branch-002",
                    "gkBranchUrl": "gitkraken://repolink/d5407d...4a03c/branch/TEST-435-branch-002?url=https%3A%2F%2Fgithub.com%2FWilyCoyote%2Ftest-repo.git",
                    "glBranchUrl": "vscode://eamodio.gitlens/link/r/d5407d...4a03c/b/GIT-4932?url=https%3A%2F%2Fgithub.com%2FWilyCoyote%2Ftest-repo.git",
                    "isAheadBehindPresented": true,
                    "ahead": 0,
                    "behind": 6379,
                    "externalUrl": "https://github.com/WilyCoyote/test-repo/tree/TEST-435-branch-002"
                }
            ]
        }
    ],
    "enableBranchCreation": true,
    "gkEnabled": true,
    "glEnabled": true,
    "notAllPermissions": false
}

 

I made the correct request but I don’t see the expected branches in the results?

If the issue displays these branches while the request does not, the likely explanation is that, the request is being executed by a user who lacks sufficient permissions to access the repository. (See the yellow infobox above.)

For a quick check, it is possible to omit the issue key in the request.

It will look like this: https://jira.your-org.com/rest/gitplugin/1.0/issues/branches

When a user is granted specific permissions, they will receive a json response that shows various branches.

 


 

« Back to: REST API index

Have feedback about this article? Did we miss something? Let us know!
On this page