Open Context Protocol is live! 🚀 Read the launch post

getRemoteIssueLinks

Get remote issue links

GET /rest/api/3/issue/{issueIdOrKey}/remotelink HTTP/1.1

Parameters

{
  "issueIdOrKey": {
    "description": "The ID or key of the issue.",
    "required": true,
    "location": "path",
    "type": "string"
  },
  "globalId": {
    "description": "The global ID of the remote issue link.",
    "required": false,
    "location": "query",
    "type": "string"
  }
}

Response Schema

{
  "oneOf": [
    {
      "items": {
        "$ref": "#/components/schemas/RemoteIssueLink"
      },
      "type": "array"
    },
    {
      "$ref": "#/components/schemas/RemoteIssueLink"
    }
  ]
}