Internal
Create a new instance of the service.
Creates or updates a remote issue link for an issue.
If a globalId
is provided and a remote issue link with that global ID is
found it is updated. Any fields without values in the request are set to null.
Otherwise, the remote issue link is created.
This operation requires issue linking to be active.
This operation can be accessed anonymously.
Permissions required:
The ID or key of the issue.
status: 200, mediaType: application/json
Returned if the remote issue link is updated.
example:
{
"id": 10000,
"self": "https://your-domain.atlassian.net/rest/api/issue/MKY-1/remotelink/10000"
}
status: 201, mediaType: application/json
Returned if the remote issue link is created.
example:
{
"id": 10000,
"self": "https://your-domain.atlassian.net/rest/api/issue/MKY-1/remotelink/10000"
}
Deletes the remote issue link from the issue using the link's global ID. Where
the global ID includes reserved URL characters these must be escaped in the
request. For example, pass system=http://www.mycompany.com/support&id=1
as
system%3Dhttp%3A%2F%2Fwww.mycompany.com%2Fsupport%26id%3D1
.
This operation requires issue linking to be active.
This operation can be accessed anonymously.
Permissions required:
The global ID of a remote issue link.
The ID or key of the issue.
Deletes a remote issue link from an issue.
This operation requires issue linking to be active.
This operation can be accessed anonymously.
Permissions required:
The ID or key of the issue.
The ID of a remote issue link.
Returns a remote issue link for an issue.
This operation requires issue linking to be active.
This operation can be accessed anonymously.
Permissions required:
The ID or key of the issue.
The ID of the remote issue link.
Returned if the request is successful.
example:
{
"application": {
"name": "My Acme Tracker",
"type": "com.acme.tracker"
},
"globalId": "system=http://www.mycompany.com/support&id=1",
"id": 10000,
"object": {
"icon": {
"title": "Support Ticket",
"url16x16": "http://www.mycompany.com/support/ticket.png"
},
"status": {
"icon": {
"link": "http://www.mycompany.com/support?id=1&details=closed",
"title": "Case Closed",
"url16x16": "http://www.mycompany.com/support/resolved.png"
},
"resolved": true
},
"summary": "Customer support issue",
"title": "TSTSUP-111",
"url": "http://www.mycompany.com/support?id=1"
},
"relationship": "causes",
"self": "https://your-domain.atlassian.net/rest/api/issue/MKY-1/remotelink/10000"
}
Returns the remote issue links for an issue. When a remote issue link global ID
is provided the record with that global ID is returned, otherwise all remote
issue links are returned. Where a global ID includes reserved URL characters
these must be escaped in the request. For example, pass
system=http://www.mycompany.com/support&id=1
as
system%3Dhttp%3A%2F%2Fwww.mycompany.com%2Fsupport%26id%3D1
.
This operation requires issue linking to be active.
This operation can be accessed anonymously.
Permissions required:
Optional
globalThe global ID of the remote issue link.
The ID or key of the issue.
Returned if the request is successful.
example:
[
{
"application": {
"name": "My Acme Tracker",
"type": "com.acme.tracker"
},
"globalId": "system=http://www.mycompany.com/support&id=1",
"id": 10000,
"object": {
"icon": {
"title": "Support Ticket",
"url16x16": "http://www.mycompany.com/support/ticket.png"
},
"status": {
"icon": {
"link": "http://www.mycompany.com/support?id=1&details=closed",
"title": "Case Closed",
"url16x16": "http://www.mycompany.com/support/resolved.png"
},
"resolved": true
},
"summary": "Customer support issue",
"title": "TSTSUP-111",
"url": "http://www.mycompany.com/support?id=1"
},
"relationship": "causes",
"self": "https://your-domain.atlassian.net/rest/api/issue/MKY-1/remotelink/10000"
},
{
"application": {
"name": "My Acme Tester",
"type": "com.acme.tester"
},
"globalId": "system=http://www.anothercompany.com/tester&id=1234",
"id": 10001,
"object": {
"icon": {
"title": "Test Case",
"url16x16": "http://www.anothercompany.com/tester/images/testcase.gif"
},
"status": {
"icon": {
"link": "http://www.anothercompany.com/tester/person?accountId=5b10a2844c20165700ede21g",
"title": "Tested by Mia Krystof",
"url16x16": "http://www.anothercompany.com/tester/images/person/mia.gif"
},
"resolved": false
},
"summary": "Test that the submit button saves the item",
"title": "Test Case #1234",
"url": "http://www.anothercompany.com/tester/testcase/1234"
},
"relationship": "is tested by",
"self": "https://your-domain.atlassian.net/rest/api/issue/MKY-1/remotelink/10001"
}
]
Updates a remote issue link for an issue.
Note: Fields without values in the request are set to null.
This operation requires issue linking to be active.
This operation can be accessed anonymously.
Permissions required:
The ID or key of the issue.
The ID of the remote issue link.
Returned if the request is successful.
Protected
Static
initialize
This resource represents remote issue links, a way of linking Jira to information in other systems. Use it to get, create, update, and delete remote issue links either by ID or global ID. The global ID provides a way of accessing remote issue links using information about the item's remote system host and remote system identifier.
See
https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-remote-links