Internal
Create a new instance of the service.
Adds an existing Atlassian team to a plan and configures their plannning settings.
Permissions required: Administer Jira global permission.
The ID of the plan.
Returned if the request is successful.
Creates a plan-only team and configures their planning settings.
Permissions required: Administer Jira global permission.
The ID of the plan.
Returned if the request is successful.
Deletes a plan-only team and their planning settings.
Permissions required: Administer Jira global permission.
The ID of the plan.
The ID of the plan-only team.
Returned if the request is successful.
Returns planning settings for an Atlassian team in a plan.
Permissions required: Administer Jira global permission.
The ID of the Atlassian team.
The ID of the plan.
Returned if the request is successful.
example:
{
"capacity": 220,
"id": "98WA-2JBO-12N3-2298",
"issueSourceId": 1,
"planningStyle": "Scrum",
"sprintLength": 2
}
Returns planning settings for a plan-only team.
Permissions required: Administer Jira global permission.
The ID of the plan.
The ID of the plan-only team.
Returned if the request is successful.
example:
{
"capacity": 30,
"id": 123,
"issueSourceId": 1,
"memberAccountIds": [
"mek2-3jno-01n3",
"kdsn-2nk3-2nn1"
],
"name": "Team1",
"planningStyle": "Scrum",
"sprintLength": 2
}
Returns a paginated list of plan-only and Atlassian teams in a plan.
Permissions required: Administer Jira global permission.
Optional
cursor?: stringThe cursor to start from. If not provided, the first page will be returned.
Optional
maxThe maximum number of plan teams to return per page. The maximum value is 50. The default value is 50.
The ID of the plan.
Returned if the request is successful.
example:
{
"cursor": "",
"isLast": true,
"maxResults": 2,
"nextPageCursor": "2",
"total": 10,
"values": [
{
"id": "1",
"name": "Team 1",
"type": "PlanOnly"
},
{
"id": "2",
"type": "Atlassian"
}
]
}
Removes an Atlassian team from a plan and deletes their planning settings.
Permissions required: Administer Jira global permission.
The ID of the Atlassian team.
The ID of the plan.
Returned if the request is successful.
Updates any of the following planning settings of an Atlassian team in a plan using JSON Patch.
Permissions required: Administer Jira global permission.
Note that "add" operations do not respect array indexes in target locations. Call the "Get Atlassian team in plan" endpoint to find out the order of array elements.
The ID of the Atlassian team.
The ID of the plan.
Returned if the request is successful.
Updates any of the following planning settings of a plan-only team using JSON Patch.
Permissions required: Administer Jira global permission.
Note that "add" operations do not respect array indexes in target locations. Call the "Get plan-only team" endpoint to find out the order of array elements.
The ID of the plan.
The ID of the plan-only team.
Returned if the request is successful.
Protected
Static
initialize
This resource represents planning settings for plan-only and Atlassian teams in a plan. Use it to get, create, update and delete planning settings.
See
https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-teams-in-plan