Returns a list of all defined names for the default words 'epic' and 'sprint'
This request has no parameters.
Returns a list of all defined names for the default words 'epic' and 'sprint'
1
2
3
4
curl --request GET \
--url 'http://{baseurl}/rest/api/2/terminology/entries' \
--user 'email@example.com:<api_token>' \
--header 'Accept: application/json'
Change epic/sprint names from {originalName} to {newName}. The {newName} will be displayed in Jira instead of {originalName} {"originalName"} must be equal to "epic" or "sprint". There can be only one entry per unique {"originalName"}. {"newName"} can only consist of alphanumeric characters and spaces e.g. {"newName": "iteration number 2"}. {"newName"} must be between 1 to 100 characters. It can't use the already defined {"newName"} values or restricted JQL words. To reset {"newName"} to the default value, enter the {"originalName"} value as the value for {"newName"}. For example, if you want to return to {"originalName": "sprint"}, enter {"newName": "sprint"}.
Collection of TerminologyRequestBean
string
string
string
Returned if the provided data isn't valid.
1
2
3
4
curl --request POST \
--url 'http://{baseurl}/rest/api/2/terminology/entries' \
--user 'email@example.com:<api_token>' \
--header 'Content-Type: application/json'
Returns epic or sprint name as specified in the {originalName} path param
string
RequiredReturns epic or sprint name.
1
2
3
4
curl --request GET \
--url 'http://{baseurl}/rest/api/2/terminology/entries/{originalName}' \
--user 'email@example.com:<api_token>' \
--header 'Accept: application/json'
Rate this page: