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

namestring

The name of the team.

user_idsstring[]

The list of user IDs to add to the team. If provided, the team members will be updated to be exactly the given users.

Example request

{
  "schedule": {
    "blocks": [
      {
        "end_time": "17:00",
        "start_time": "09:00"
      }
    ],
    "timezone": "America/New_York"
  }
}

Response

request_idstring

The request ID for tracking.

Changes