teams
Update an existing team
Updates an existing team, including how it assigns issues and its recurring assignment schedule. Only provided fields are modified; supplying schedule.blocks replaces the whole rotation, and omitting it leaves the rotation unchanged.
Rate limit: 120 requests per minute
patch/teams/{id}
Path parameters
idstring required
The ID of the team to update.
Request body
Example request
{
"schedule": {
"blocks": [
{
"end_time": "17:00",
"start_time": "09:00"
}
],
"timezone": "America/New_York"
}
}