Create Issue Link Type

POST {{baseUrl}}/rest/api/3/issueLinkType

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.

Request Body

{"id"=>"<string>", "name"=>"<string>", "inward"=>"<string>", "outward"=>"<string>"}

HEADERS

KeyDatatypeRequiredDescription
Content-Typestring

RESPONSES

status: Created

{&quot;id&quot;:&quot;1000&quot;,&quot;name&quot;:&quot;Duplicate&quot;,&quot;inward&quot;:&quot;Duplicated by&quot;,&quot;outward&quot;:&quot;Duplicates&quot;,&quot;self&quot;:&quot;https://your-domain.atlassian.net/rest/api/3/issueLinkType/1000&quot;}