teams

Create a new team

Creates a new team with a name and optional member list. Optionally sets how the team assigns issues and creates its recurring assignment schedule in the same call.

Rate limit: 30 requests per minute

post/teams

Request body

namestring required

The name of the team.

user_idsstring[]

The list of user IDs to add to the team.

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