GET
/
v1
/
teams
/
{id}
Retrieves a team
curl --request GET \
  --url https://api.rootly.com/v1/teams/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "c7fb7d42-11b3-44dc-95e2-d14ab0fe0277",
    "type": "groups",
    "attributes": {
      "slug": "quo-magnam-tempora-omnis",
      "name": "Quo magnam tempora omnis.",
      "description": null,
      "color": "#D7E7F5",
      "position": 1,
      "notify_emails": [],
      "slack_channels": [],
      "slack_aliases": [],
      "pagerduty_id": null,
      "pagerduty_service_id": null,
      "backstage_id": null,
      "external_id": null,
      "opsgenie_id": null,
      "victor_ops_id": null,
      "pagertree_id": null,
      "cortex_id": null,
      "service_now_ci_sys_id": null,
      "user_ids": [],
      "admin_ids": [],
      "incidents_count": 1,
      "alert_urgency_id": null,
      "alerts_email_enabled": false,
      "alerts_email_address": "group-89f2cc6deb69444ae40dce980ef9778f@email.rootly.com",
      "created_at": "2025-07-09T12:44:43.559-07:00",
      "updated_at": "2025-07-09T12:44:43.559-07:00"
    },
    "relationships": {
      "users": {
        "data": []
      }
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Query Parameters

include
enum<string>

comma separated if needed. eg: users

Available options:
users

Response

200
application/vnd.api+json

team found

The response is of type object.