GET

Get all defined names for 'epic' and 'sprint'Experimental

Returns a list of all defined names for the default words 'epic' and 'sprint'

Request

This request has no parameters.

Responses

Returns a list of all defined names for the default words 'epic' and 'sprint'

application/json

TerminologyResponseBean
GET/api/2/terminology/entries
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'
POST

Update epic/sprint names from original to newExperimental

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"}.

Request

Request bodyapplication/json

Collection of TerminologyRequestBean

newName

string

newNamePlural

string

originalName

string

Responses

Returned if the provided data isn't valid.

POST/api/2/terminology/entries
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'
GET

Get epic or sprint name by original nameExperimental

Returns epic or sprint name as specified in the {originalName} path param

Request

Path parameters

originalName

string

Required

Responses

Returns epic or sprint name.

application/json

TerminologyResponseBean
GET/api/2/terminology/entries/{originalName}
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: