List an Organization's Teams

GET /api/0/organizations/{organization_slug}/teams/

Returns a list of teams bound to a organization.

Path Parameters

organization_slug (string)
REQUIRED

The slug of the organization for which the teams should be listed.

Query Parameters:

cursor (string)

A pointer to the last object fetched and its sort order; used to retrieve the next or previous results.

Scopes

<auth_token> requires one of the following scopes:
  • team:read
curl https://sentry.io/api/0/organizations/{organization_slug}/teams/ \
 -H 'Authorization: Bearer <auth_token>'
RESPONSESCHEMA
[
  {
    "avatar": {
      "avatarType": "letter_avatar",
      "avatarUuid": null
    },
    "dateCreated": "2018-11-06T21:20:08.115Z",
    "hasAccess": true,
    "id": "3",
    "isMember": true,
    "isPending": false,
    "memberCount": 1,
    "name": "Ancient Gabelers",
    "projects": [],
    "slug": "ancient-gabelers"
  },
  {
    "avatar": {
      "avatarType": "letter_avatar",
      "avatarUuid": null
    },
    "dateCreated": "2018-11-06T21:19:55.114Z",
    "hasAccess": true,
    "id": "2",
    "isMember": true,
    "isPending": false,
    "memberCount": 1,
    "name": "Powerful Abolitionist",
    "projects": [
      {
        "avatar": {
          "avatarType": "letter_avatar",
          "avatarUuid": null
        },
        "color": "#bf5b3f",
        "dateCreated": "2018-11-06T21:19:58.536Z",
        "features": [
          "releases",
          "sample-events",
          "minidump",
          "servicehooks",
          "rate-limits",
          "data-forwarding"
        ],
        "firstEvent": null,
        "hasAccess": true,
        "id": "3",
        "isBookmarked": false,
        "isInternal": false,
        "isMember": true,
        "isPublic": false,
        "name": "Prime Mover",
        "platform": null,
        "slug": "prime-mover",
        "status": "active"
      },
      {
        "avatar": {
          "avatarType": "letter_avatar",
          "avatarUuid": null
        },
        "color": "#3fbf7f",
        "dateCreated": "2018-11-06T21:19:55.121Z",
        "features": [
          "releases",
          "sample-events",
          "minidump",
          "servicehooks",
          "rate-limits",
          "data-forwarding"
        ],
        "firstEvent": null,
        "hasAccess": true,
        "id": "2",
        "isBookmarked": false,
        "isInternal": false,
        "isMember": true,
        "isPublic": false,
        "name": "Pump Station",
        "platform": null,
        "slug": "pump-station",
        "status": "active"
      },
      {
        "avatar": {
          "avatarType": "letter_avatar",
          "avatarUuid": null
        },
        "color": "#bf6e3f",
        "dateCreated": "2018-11-06T21:20:08.064Z",
        "features": [
          "servicehooks",
          "sample-events",
          "data-forwarding",
          "rate-limits",
          "minidump"
        ],
        "firstEvent": null,
        "hasAccess": true,
        "id": "4",
        "isBookmarked": false,
        "isInternal": false,
        "isMember": true,
        "isPublic": false,
        "name": "The Spoiled Yoghurt",
        "platform": null,
        "slug": "the-spoiled-yoghurt",
        "status": "active"
      }
    ],
    "slug": "powerful-abolitionist"
  }
]