Overview
Updates an existing team’s name, description, or default role for new members.Parameters
The ID of the team to update.
The updated name for the team.
Updated description for the team. Set to null or empty string to remove the description.
Updated default role for new team members:
manager- New members get manager permissions by defaultnone- No default role (must be specified when adding members)
Response
Returns the updated team object with all modified fields.Example Usage
Update team name
Update description
Change default role
Update multiple fields
Impact of Team Updates
Name Changes
Updating a team’s name affects:- How the team appears in the PagerDuty UI
- Team references in services, schedules, and escalation policies (they update automatically)
- Team search and filtering
Changing a team’s name does not affect its ID. All existing references using the team ID remain valid.
Default Role Changes
Changingdefault_role only affects future member additions:
- Existing team members keep their current roles
- Future
add_team_membercalls will use the new default role if no role is specified
Description Changes
Descriptions are for documentation purposes and don’t affect team functionality.Common Use Cases
- Team renaming - Update names when teams reorganize or change focus
- Documentation updates - Keep team descriptions current
- Permission model changes - Adjust default roles as team structure evolves
- Standardization - Enforce naming conventions across teams
- Clarification - Add or improve descriptions for better understanding
Important Notes
Best Practice Workflow
- Get current configuration - Use
get_teamto retrieve existing team details - Modify as needed - Make your changes to the team data
- Update the team - Call
update_teamwith the modified configuration - Verify changes - Use
get_teamagain to confirm the updates
Related Tools
get_team
Get current team configuration
list_teams
View all teams
delete_team
Delete a team (write mode)
manage_members
Manage team membership
See Also
- Write Mode Configuration - How to enable write tools