Adds a new integration to the git configuration list via the API call.
url
{JiraBaseURL}/rest/gitplugin/1.0/integration
method
POST
Parameters
Request body is a JSON structure supporting the following parameters:
Field | Description |
---|---|
displayName | String. Optional. Some git hosts may require this to be filled in.
This is the name that will appear in the Git Integration for Jira app repositories list. |
origin | String. Required.
This is the URL to the hosted git service used on the project. For example, you might host your repository on GitHub, Beanstalk or your own server. |
disabled | Boolean. Optional.
Set the repository status to updated (enabled) or disabled. If left blank, the default setting for this field is false. |
sendCommitEmails | Boolean. Optional.
Enables or disables commit notification emails for this repository. |
maxMinsToCommitEmail | Integer. Optional.
Set the desired value in minutes, as to when commit notifications will be sent. Commit notifications will be e-mailed if the age of the commit is less than or equal to this value. |
type | String. Required.
The type of integration. Available values are the following:
|
username | String. Optional.
Set as username for the git host. Leave blank if PAT is used. |
password | String. Optional.
Set as password for the git host. Leave blank if PAT is used. |
pat | String. Optional.
This field accepts personal access token from supported git hosts. |
disableSslVerification | Boolean. Optional.
The default value for this setting is false. The SSL Verify setting is set to Enabled by default. If set to disabled, the Git Integration for Jira app will ignore verification of SSL certificates when connecting to a git server. This setting can also be accessed via Manage Git repositories ➜ Actions ➜ Edit repository settings.
|
apiPath | String. Optional.
The integration will use the relative REST API path starting with “/” to retrieve the list of tracked repositories. For more information, see article Working with Custom API path. |
apiFilter | String. Optional.
It is a JMESPath filter expression. The expression will be used to filter API results such as repository names, etc. For more information, see article Working with JMESPath filters. |
tfsCollection | String. Optional.
Specify the specific collection to connect. It is used for Microsoft integrations only. |
awsRegion | String. Optional.
Specify AWS region; where CodeCommit repositories are located. The list of regions with their names can be found here. Supported regions:
|
requireUserPat | Boolean. Optional.
Setting this parameter to true will require users to specify their own PAT for branch and pull/merge request management. |
gitViewerEnabled | Boolean. Optional.
Enables or disables the Repository Browser feature for this repository. The default setting for this setting is enabled. Users must have the View Development Tools project permission in order to use this feature. Consult your Jira System Administrator on permissions.
For more information, see section, Repository Browser. |
smartCommitsEnabled | Boolean. Optional.
This setting is enabled by default. Enables/disables smart commits processing for this repository or tracked folder. The default value for this field is true. |
global | Boolean. Optional.
If set to true, the projectMappingIds parameter is ignored. Otherwise the |
sourcesDiffViewEnabled | Boolean. Optional.
When enabled, this setting allows Jira users with the View Development Tools and correct Jira/Git Integration for Jira app permissions to view the commit and file diffs inside Jira. |
revisionIndexing | Boolean. Optional.
This setting turns on the memory cache which is used when list of commits are displayed. Set to true if revision indexing will index and link to any mentioned issue keys in the revision history or not (false). |
tagsFilter | String. Optional.
Displays all tags for the specific issue, if left blank. Otherwise, set tags matching pattern to display tags on issue pages that match the specified regular expression pattern. For more information, see example in Show tags. |
projectMappingIds | Long [ ]. Array. Optional.
These are numeric projects IDs associated with the repository. This field accepts list of comma separated project IDs for project mapping. Trailing spaces are ignored (equivalent to unchecking the Associate to All Projects checkbox in the Advanced Setup dialog). Example: |
trustFolderStat | Boolean. Optional.
When the The default value for Jira Data Center is false. If your repository is stored on a network share, it is highly recommended to set this setting to false.
We recommend to leave this setting to
false (default) when adding new integration. You can change this setting later on via Actions ➜ Edit repository settings in the Manage repositories page.The
trustFolderStat setting can be configured for each repository in the integration. |
refSpecNotes | Boolean. Optional. This is a reference to refs/notes/* used for fetching. The default value for this field is true.
Git notes are not shown…
|
refSpecChanges | Boolean. Optional. This is a reference to refs/changes/* used for fetching. The default value for this field is false. |
refSpecCustom | String. Optional. This is a user-defined list of references used for fetching. It is a comma-separated list with the format: +refs/refname1/*:refs/refname1/* , refs/refname2/*:refs/refname2/* , … |
folderDepth | Integer. Optional. Valid value range: 1 – 5 This parameter is required if type = FILESPACE . |
prHideFilter | String. Optional. Displays all pull requests for the specific issue, if left blank. Otherwise, set pull requests matching pattern to hide pull requests on issue pages that match the specified regular expression pattern. |
Response
This will add a new integration of the connected git host to the git repository configuration list.
Example:
https://jira.yourorg.com/rest/gitplugin/1.0/integration
{
"displayName": "MyGitHub",
"origin": "https://api.github.com",
"type": "GITHUB",
"pat": "thisisthepatofyourgithost",
"disabled": false,
"sendCommitEmails": true,
"maxMinsToCommitEmail": 1440,
"global": true,
"revisionIndexing": true,
"gitViewerEnabled": true,
"disableSslVerification": false,
"smartCommitsEnabled": true,
"requireUserPat": false,
"projectMappingIds": [],
"sourcesDiffViewEnabled": true,
"limitGitData": true,
"refSpecNotes": true,
"refSpecChanges": false,
"trustFolderStat": false
}
Response:
{
"success": "true",
"integration": {
"id": 1,
"displayName": "MyGitHub",
"origin": "https://api.github.com",
"disabled": false,
"sendCommitEmails": true,
"maxMinsToCommitEmail": 1440,
"global": true,
"initDate": 1626070678087,
"revisionIndexing": true,
"gitViewerEnabled": true,
"disableSslVerification": false,
"smartCommitsEnabled": true,
"requireUserPat": false,
"projectMappingIds": [],
"integrationType": "GITHUB",
"sourcesDiffViewEnabled": true,
"refSpecNotes": true,
"refSpecChanges": false,
"trustFolderStat": false
}
}
Integration REST APIs
Add New Integration (this page)