v5

latestOpenAPI 3.0.3Apache 2.0raw.githubusercontent.com2026-02-283466592.5 MB
Teams

Get team maintainers

Fetch the maintainers that have been assigned to the team. To learn more, read Managing team maintainers.

get/api/v2/teams/{teamKey}/maintainers

Path parameters

teamKeystring string required

The team key

The team key

Query parameters

limitinteger

The number of maintainers to return in the response. Defaults to 20.

The number of maintainers to return in the response. Defaults to 20.

offsetinteger

Where to start in the list. This is for use with pagination. For example, an offset of 10 skips the first ten items and then returns the next items in the list, up to the query limit.

Where to start in the list. This is for use with pagination. For example, an offset of 10 skips the first ten items and then returns the next items in the list, up to the query limit.

Response

Team maintainers response

totalCountinteger

The number of maintainers of the team

_linksobject

The location and content type of related resources

Example response

{
  "totalCount": 1,
  "items": [
    {
      "_id": "569f183514f4432160000007",
      "_links": {
        "self": {
          "href": "/api/v2/members/569f183514f4432160000007",
          "type": "application/json"
        }
      },
      "email": "ariel@acme.com",
      "firstName": "Ariel",
      "lastName": "Flores",
      "role": "reader"
    }
  ],
  "_links": {
    "self": {
      "href": "/api/v2/teams/example-team/maintainers?limit=20",
      "type": "application/json"
    }
  }
}