InternalCreate a new instance of the service.
Creates a tab for a screen.
Permissions required: Administer Jira global permission.
The ID of the screen.
Returned if the request is successful.
example:
{
"id": 10000,
"name": "Fields Tab"
}
Deletes a screen tab.
Permissions required: Administer Jira global permission.
The ID of the screen.
The ID of the screen tab.
Returns the list of tabs for a screen.
Permissions required:
OptionalprojectThe key of the project.
The ID of the screen.
Returned if the request is successful.
Returns the list of tabs for a bulk of screens.
Permissions required:
OptionalmaxThe maximum number of items to return per page. The maximum number is 100,
OptionalscreenThe list of screen IDs. To include multiple screen IDs, provide an
ampersand-separated list. For example, screenId=10000&screenId=10001.
OptionalstartThe index of the first item to return in a page of results (page offset).
OptionaltabThe list of tab IDs. To include multiple tab IDs, provide an
ampersand-separated list. For example, tabId=10000&tabId=10001.
Returned if the request is successful.
example:
{
"isLast": true,
"maxResults": 100,
"startAt": 0,
"total": 2,
"values": [
{
"screenId": 10000,
"tabId": 10001,
"tabName": "My Custom Tab 1"
},
{
"screenId": 10001,
"tabId": 10002,
"tabName": "My Custom Tab 2"
}
]
}
Moves a screen tab.
Permissions required: Administer Jira global permission.
The position of tab. The base index is 0.
The ID of the screen.
The ID of the screen tab.
Returned if the request is successful.
Updates the name of a screen tab.
Permissions required: Administer Jira global permission.
The ID of the screen.
The ID of the screen tab.
Returned if the request is successful.
example:
{
"id": 10000,
"name": "Fields Tab"
}
Protected Staticinitialize
This resource represents the screen tabs used to record issue details. Use it to get, create, update, move, and delete screen tabs.
See
https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-screen-tabs