Create a Jira issue and associate it with a comment on a pull request.
This resource can only be used with comments on a pull request. Attempting to call this resource with a different type of comment (for example, a comment on a commit) will result in an error.
The authenticated user must have REPO_READ permission for the repository containing the comment to call this resource.
The JSON structure for the create issue format is specified by Jira's REST v2 API.
string
Requiredstring
A String representation of the JSON format Jira create issue request see: Jira REST API
string
The created Jira issue key and the associated comment ID
1
2
3
4
5
curl --request POST \
--url 'http://{baseurl}/rest/jira/latest/comments/{commentId}/issues' \
--header 'Accept: application/json;charset=UTF-8' \
--header 'Content-Type: application/json' \
--data '"<string>"'
Retrieve a page of changesets associated with the given issue key.
string
Requiredstring
number
number
A page of detailed changesets
1
2
3
curl --request GET \
--url 'http://{baseurl}/rest/jira/latest/issues/{issueKey}/commits' \
--header 'Accept: application/json;charset=UTF-8'
Retrieves the enchanced primary entitylink
The authenticated user must have PROJECT_READ permission for the project having the primary enhanced entitylink.
string
RequiredThe primary enhanced entitylink.
1
2
3
curl --request GET \
--url 'http://{baseurl}/rest/jira/latest/projects/{projectKey}/primary-enhanced-entitylink' \
--header 'Accept: application/json;charset=UTF-8'
Retrieves Jira issue keys that are associated with the commits in the specified pull request. The number of commits checked for issues is limited to a default of 100.
string
Requiredstring
Requiredstring
RequiredA list of Jira issues keys for the pull request
array<RestJiraIssue>
1
2
3
curl --request GET \
--url 'http://{baseurl}/rest/jira/latest/projects/{projectKey}/repos/{repositorySlug}/pull-requests/{pullRequestId}/issues' \
--header 'Accept: application/json;charset=UTF-8'
Rate this page: