Returns a list of available issue link types, if issue linking is enabled.
This request has no parameters.
Returns a list of all available issue link types.
IssueLinkTypesBean
1
2
3
4
curl --request GET \
--url 'http://{baseurl}/rest/api/2/issueLinkType' \
--user 'email@example.com:<api_token>' \
--header 'Accept: application/json'
Create a new issue link type.
All information about the link relationship.
string
string
string
string
string
The new issue link type has been created.
1
2
3
4
curl --request POST \
--url 'http://{baseurl}/rest/api/2/issueLinkType' \
--user 'email@example.com:<api_token>' \
--header 'Content-Type: application/json'
Resets the order of issue link types alphabetically.
The sort direction for ordering the list alphabetically. Acceptable values are 'asc' or 'desc' (case-insensitive).
string
Returns all issue link types in reset order.
IssueLinkTypesBean
1
2
3
4
5
curl --request PUT \
--url 'http://{baseurl}/rest/api/2/issueLinkType/order' \
--user 'email@example.com:<api_token>' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json'