Internal
Create a new instance of the service.
Creates an issue link type. Use this operation to create descriptions of the reasons why issues are linked. The issue link type consists of a name and descriptions for a link's inward and outward relationships.
To use this operation, the site must have issue linking enabled.
Permissions required: Administer Jira global permission.
Returned if the request is successful.
example:
{
"id": "1000",
"inward": "Duplicated by",
"name": "Duplicate",
"outward": "Duplicates",
"self": "https://your-domain.atlassian.net/rest/api/3/issueLinkType/1000"
}
Deletes an issue link type.
To use this operation, the site must have issue linking enabled.
Permissions required: Administer Jira global permission.
The ID of the issue link type.
Returns an issue link type.
To use this operation, the site must have issue linking enabled.
This operation can be accessed anonymously.
Permissions required: Browse projects project permission for a project in the site.
The ID of the issue link type.
Returned if the request is successful.
example:
{
"id": "1000",
"inward": "Duplicated by",
"name": "Duplicate",
"outward": "Duplicates",
"self": "https://your-domain.atlassian.net/rest/api/3/issueLinkType/1000"
}
Returns a list of all issue link types.
To use this operation, the site must have issue linking enabled.
This operation can be accessed anonymously.
Permissions required: Browse projects project permission for a project in the site.
Returned if the request is successful.
example:
{
"issueLinkTypes": [
{
"id": "1000",
"inward": "Duplicated by",
"name": "Duplicate",
"outward": "Duplicates",
"self": "https://your-domain.atlassian.net/rest/api/3/issueLinkType/1000"
},
{
"id": "1010",
"inward": "Blocked by",
"name": "Blocks",
"outward": "Blocks",
"self": "https://your-domain.atlassian.net/rest/api/3/issueLinkType/1010"
}
]
}
Updates an issue link type.
To use this operation, the site must have issue linking enabled.
Permissions required: Administer Jira global permission.
The ID of the issue link type.
Returned if the request is successful.
example:
{
"id": "1000",
"inward": "Duplicated by",
"name": "Duplicate",
"outward": "Duplicates",
"self": "https://your-domain.atlassian.net/rest/api/3/issueLinkType/1000"
}
Protected
Static
initialize
This resource represents issue link types. Use it to get, create, update, and delete link issue types as well as get lists of all link issue types.
To use it, the site must have issue linking enabled.
See
https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-link-types