• Backlog
  • Board
  • Epic
  • Issue
  • Sprint
  • Development Information
  • Feature Flags
  • Deployments
  • Builds
  • Security Information
Cloud
Jira Software Cloud / Reference / REST API

Development Information

Postman Collection
OpenAPI

APIs related to integrating development information (commits, branches and pull requests) with Jira. These APIs are available to Atlassian Connect apps and on-premise integrations using OAuth. Connect apps using these APIs must have the Development Tool module in the app descriptor, see https://developer.atlassian.com/cloud/jira/software/modules/development-tool/. For more details on integrating Jira Software Cloud with on-premises tools using OAuth 2.0 credentials, see https://developer.atlassian.com/cloud/jira/software/integrate-jsw-cloud-with-onpremises-tools/.

POST

Store development information

Stores development information provided in the request to make it available when viewing issues in Jira. Existing repository and entity data for the same ID will be replaced if the updateSequenceId of existing data is less than the incoming data. Submissions are performed asynchronously. Submitted data will eventually be available in Jira; most updates are available within a short period of time, but may take some time during peak load and/or maintenance times.

Scopes

Connect app scope requiredWRITE

Request

Header parameters

Authorization

string

Required

Request bodyapplication/json

Request object, which contains development information

repositories

array<Repository>

Required
preventTransitions

boolean

operationType

string

properties

object

providerMetadata

ProviderMetadata

Responses

Submission accepted. Each submitted repository and entity that is of a valid format will be eventually available in Jira.

application/json

StoreDevinfoResult

The result of a successful store development information request

POST/rest/devinfo/0.10/bulk
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 curl --request POST \ --url 'https://your-domain.atlassian.com/rest/devinfo/0.10/bulk' \ --header 'Accept: application/json' \ --header 'Content-Type: application/json' \ --data '{ "repositories": [ { "name": "atlassian-connect-jira-example", "description": "The repository which stores code of the Atlassian Connect Add-on Devinfo application.", "forkOf": "56c7c750-cee2-48e2-b920-d7706dfd11f7", "url": "https://bitbucket.org/atlassianlabs/atlassian-connect-jira-example", "commits": [ { "id": "a7727ee6350c33cdf90826dc21abaa26a5704370", "issueKeys": [ "<string>" ], "updateSequenceId": 1523494301248, "hash": "<string>", "flags": [ "MERGE_COMMIT" ], "message": "README.md edited online with Bitbucket", "author": { "name": "Jane Doe", "email": "jane_doe@atlassian.com", "username": "jdoe", "url": "https://atlassian.com/account/jane_doe", "avatar": "https://atlassian.com/account/jane_doe/avatar/32" }, "fileCount": 1, "url": "https://bitbucket.org/atlassianlabs/atlassian-connect-jira-example/commits/a7727ee6350c33cdf90826dc21abaa26a5704370", "files": [ { "path": "/home/user/src/atlassian-connect-jira-example/README.md", "url": "https://bitbucket.org/atlassianlabs/atlassian-connect-jira-example/src/a7727ee6350c33cdf90826dc21abaa26a5704370/README.md", "changeType": "MODIFIED", "linesAdded": 0, "linesRemoved": 1 } ], "authorTimestamp": "2016-10-31T23:27:25+00:00", "displayId": "a7727ee" } ], "branches": [ { "id": "c6c7c750-cee2-48e2-b920-d7706dfd11f9", "issueKeys": [ "<string>" ], "updateSequenceId": 1523494301248, "name": "master", "lastCommit": { "id": "a7727ee6350c33cdf90826dc21abaa26a5704370", "issueKeys": [ "<string>" ], "updateSequenceId": 1523494301248, "hash": "<string>", "flags": [ "MERGE_COMMIT" ], "message": "README.md edited online with Bitbucket", "author": { "name": "Jane Doe", "email": "jane_doe@atlassian.com", "username": "jdoe", "url": "https://atlassian.com/account/jane_doe", "avatar": "https://atlassian.com/account/jane_doe/avatar/32" }, "fileCount": 1, "url": "https://bitbucket.org/atlassianlabs/atlassian-connect-jira-example/commits/a7727ee6350c33cdf90826dc21abaa26a5704370", "files": [ { "path": "/home/user/src/atlassian-connect-jira-example/README.md", "url": "https://bitbucket.org/atlassianlabs/atlassian-connect-jira-example/src/a7727ee6350c33cdf90826dc21abaa26a5704370/README.md", "changeType": "MODIFIED", "linesAdded": 0, "linesRemoved": 1 } ], "authorTimestamp": "2016-10-31T23:27:25+00:00", "displayId": "a7727ee" }, "createPullRequestUrl": "https://bitbucket.org/atlassianlabs/atlassian-connect-jira-example/pull-requests/new", "url": "https://bitbucket.org/atlassianlabs/atlassian-connect-jira-example/branch/master" } ], "pullRequests": [ { "id": "c6c7c750-cee2-48e2-b920-d7706dfd11f9", "issueKeys": [ "<string>" ], "updateSequenceId": 1523494301248, "status": "OPEN", "title": "Pull request 2, fixing all the issues caused by pull request #1", "author": { "name": "Jane Doe", "email": "jane_doe@atlassian.com", "username": "jdoe", "url": "https://atlassian.com/account/jane_doe", "avatar": "https://atlassian.com/account/jane_doe/avatar/32" }, "commentCount": 42, "sourceBranch": "ISSUE-1-feature-branch", "sourceBranchUrl": "https://bitbucket.org/atlassianlabs/atlassian-connect-jira-example/branch/ISSUE-1-feature-branch", "lastUpdate": "2016-10-31T23:27:25+00:00", "destinationBranch": "master", "destinationBranchUrl": "https://bitbucket.org/atlassianlabs/atlassian-connect-jira-example/src/master", "reviewers": [ { "name": "Jane Doe", "approvalStatus": "APPROVED", "url": "https://atlassian.com/account/jane_doe", "avatar": "https://atlassian.com/account/jane_doe/avatar/32", "email": "jane_doe@example.com", "accountId": "655363:e4ca5e2d-a901-40e3-877e-bf5d22c0f130" } ], "url": "https://bitbucket.org/atlassianlabs/atlassian-connect-jira-example/pull-requests/2", "displayId": "Pull request 2", "taskCount": 42 } ], "avatar": "http://bitbucket.org/atlassianlabs/atlassian-connect-jira-example/avatar/32", "avatarDescription": "Avatar description", "id": "c6c7c750-cee2-48e2-b920-d7706dfd11f9", "updateSequenceId": 1523494301248 } ], "preventTransitions": true, "operationType": "NORMAL", "properties": {}, "providerMetadata": { "product": "Bitbucket Server 6.7.2" } }'
202Response
1 2 3 4 5 6 7 { "acceptedDevinfoEntities": {}, "failedDevinfoEntities": {}, "unknownIssueKeys": [ "<string>" ] }
GET

Get repository

For the specified repository ID, retrieves the repository and the most recent 400 development information entities. The result will be what is currently stored, ignoring any pending updates or deletes.

Scopes

Connect app scope requiredREAD

Request

Path parameters

repositoryId

string

Required

Header parameters

Authorization

string

Required

Responses

The repository data currently stored for the given ID.

application/json

Repository

Represents a repository, containing development information such as commits, pull requests, and branches.

GET/rest/devinfo/0.10/repository/{repositoryId}
1 2 3 curl --request GET \ --url 'https://your-domain.atlassian.com/rest/devinfo/0.10/repository/{repositoryId}' \ --header 'Accept: application/json'
200Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 { "name": "atlassian-connect-jira-example", "description": "The repository which stores code of the Atlassian Connect Add-on Devinfo application.", "forkOf": "56c7c750-cee2-48e2-b920-d7706dfd11f7", "url": "https://bitbucket.org/atlassianlabs/atlassian-connect-jira-example", "commits": [ { "id": "a7727ee6350c33cdf90826dc21abaa26a5704370", "issueKeys": [ "<string>" ], "updateSequenceId": 1523494301248, "hash": "<string>", "flags": [ "MERGE_COMMIT" ], "message": "README.md edited online with Bitbucket", "author": { "name": "Jane Doe", "email": "jane_doe@atlassian.com", "username": "jdoe", "url": "https://atlassian.com/account/jane_doe", "avatar": "https://atlassian.com/account/jane_doe/avatar/32" }, "fileCount": 1, "url": "https://bitbucket.org/atlassianlabs/atlassian-connect-jira-example/commits/a7727ee6350c33cdf90826dc21abaa26a5704370", "files": [ { "path": "/home/user/src/atlassian-connect-jira-example/README.md", "url": "https://bitbucket.org/atlassianlabs/atlassian-connect-jira-example/src/a7727ee6350c33cdf90826dc21abaa26a5704370/README.md", "changeType": "MODIFIED", "linesAdded": 0, "linesRemoved": 1 } ], "authorTimestamp": "2016-10-31T23:27:25+00:00", "displayId": "a7727ee" } ], "branches": [ { "id": "c6c7c750-cee2-48e2-b920-d7706dfd11f9", "issueKeys": [ "<string>" ], "updateSequenceId": 1523494301248, "name": "master", "lastCommit": { "id": "a7727ee6350c33cdf90826dc21abaa26a5704370", "issueKeys": [ "<string>" ], "updateSequenceId": 1523494301248, "hash": "<string>", "flags": [ "MERGE_COMMIT" ], "message": "README.md edited online with Bitbucket", "author": { "name": "Jane Doe", "email": "jane_doe@atlassian.com", "username": "jdoe", "url": "https://atlassian.com/account/jane_doe", "avatar": "https://atlassian.com/account/jane_doe/avatar/32" }, "fileCount": 1, "url": "https://bitbucket.org/atlassianlabs/atlassian-connect-jira-example/commits/a7727ee6350c33cdf90826dc21abaa26a5704370", "files": [ { "path": "/home/user/src/atlassian-connect-jira-example/README.md", "url": "https://bitbucket.org/atlassianlabs/atlassian-connect-jira-example/src/a7727ee6350c33cdf90826dc21abaa26a5704370/README.md", "changeType": "MODIFIED", "linesAdded": 0, "linesRemoved": 1 } ], "authorTimestamp": "2016-10-31T23:27:25+00:00", "displayId": "a7727ee" }, "createPullRequestUrl": "https://bitbucket.org/atlassianlabs/atlassian-connect-jira-example/pull-requests/new", "url": "https://bitbucket.org/atlassianlabs/atlassian-connect-jira-example/branch/master" } ], "pullRequests": [ { "id": "c6c7c750-cee2-48e2-b920-d7706dfd11f9", "issueKeys": [ "<string>" ], "updateSequenceId": 1523494301248, "status": "OPEN", "title": "Pull request 2, fixing all the issues caused by pull request #1", "author": { "name": "Jane Doe", "email": "jane_doe@atlassian.com", "username": "jdoe", "url": "https://atlassian.com/account/jane_doe", "avatar": "https://atlassian.com/account/jane_doe/avatar/32" }, "commentCount": 42, "sourceBranch": "ISSUE-1-feature-branch", "sourceBranchUrl": "https://bitbucket.org/atlassianlabs/atlassian-connect-jira-example/branch/ISSUE-1-feature-branch", "lastUpdate": "2016-10-31T23:27:25+00:00", "destinationBranch": "master", "destinationBranchUrl": "https://bitbucket.org/atlassianlabs/atlassian-connect-jira-example/src/master", "reviewers": [ { "name": "Jane Doe", "approvalStatus": "APPROVED", "url": "https://atlassian.com/account/jane_doe", "avatar": "https://atlassian.com/account/jane_doe/avatar/32", "email": "jane_doe@example.com", "accountId": "655363:e4ca5e2d-a901-40e3-877e-bf5d22c0f130" } ], "url": "https://bitbucket.org/atlassianlabs/atlassian-connect-jira-example/pull-requests/2", "displayId": "Pull request 2", "taskCount": 42 } ], "avatar": "http://bitbucket.org/atlassianlabs/atlassian-connect-jira-example/avatar/32", "avatarDescription": "Avatar description", "id": "c6c7c750-cee2-48e2-b920-d7706dfd11f9", "updateSequenceId": 1523494301248 }
DEL

Delete repository

Deletes the repository data stored by the given ID and all related development information entities. Deletion is performed asynchronously.

Scopes

Connect app scope requiredDELETE

Request

Path parameters

repositoryId

string

Required

Query parameters

_updateSequenceId

integer

Header parameters

Authorization

string

Required

Responses

Delete request has been accepted. Data will eventually be removed from Jira if it exists.

DEL/rest/devinfo/0.10/repository/{repositoryId}
1 2 curl --request DELETE \ --url 'https://your-domain.atlassian.com/rest/devinfo/0.10/repository/{repositoryId}'
DEL

Delete development information by properties

Deletes development information entities which have all the provided properties. Entities will be deleted that match ALL of the properties (i.e. treated as an AND). For example if request is DELETE bulk?accountId=123&projectId=ABC entities which have properties accountId=123 and projectId=ABC will be deleted. Special property _updateSequenceId can be used to delete all entities with updateSequenceId less or equal than the value specified. In addition to the optional _updateSequenceId, one or more query params must be supplied to specify properties to delete by. Deletion is performed asynchronously: specified entities will eventually be removed from Jira.

Scopes

Connect app scope requiredDELETE

Request

Query parameters

_updateSequenceId

integer

Header parameters

Authorization

string

Required

Responses

Delete accepted. Data will eventually be removed from Jira.

DEL/rest/devinfo/0.10/bulkByProperties
1 2 curl --request DELETE \ --url 'https://your-domain.atlassian.com/rest/devinfo/0.10/bulkByProperties'
GET

Check if data exists for the supplied properties

Checks if development information which have all the provided properties exists. For example, if request is GET existsByProperties?accountId=123&projectId=ABC then result will be positive only if there is at least one entity or repository with both properties accountId=123 and projectId=ABC. Special property _updateSequenceId can be used to filter all entities with updateSequenceId less or equal than the value specified. In addition to the optional _updateSequenceId, one or more query params must be supplied to specify properties to search by.

Scopes

Connect app scope requiredREAD

Request

Query parameters

_updateSequenceId

integer

Header parameters

Authorization

string

Required

Responses

Returns whether data exists for the specified properties.

application/json

ExistsForPropertiesResponse

Whether there is data for the properties supplied in a query

GET/rest/devinfo/0.10/existsByProperties
1 2 3 curl --request GET \ --url 'https://your-domain.atlassian.com/rest/devinfo/0.10/existsByProperties' \ --header 'Accept: application/json'
200Response
1 2 3 { "hasDataMatchingProperties": true }
DEL

Delete development information entity

Deletes particular development information entity. Deletion is performed asynchronously.

Scopes

Connect app scope requiredDELETE

Request

Path parameters

repositoryId

string

Required
entityType

string

Required
entityId

string

Required

Query parameters

_updateSequenceId

integer

Header parameters

Authorization

string

Required

Responses

Delete request has been accepted. Data will eventually be removed from Jira if it exists.

DEL/rest/devinfo/0.10/repository/{repositoryId}/{entityType}/{entityId}
1 2 curl --request DELETE \ --url 'https://your-domain.atlassian.com/rest/devinfo/0.10/repository/{repositoryId}/{entityType}/{entityId}'

Rate this page: