Skip to main content
GET
/
v3
/
teams
/
{id}
Show
curl --request GET \
  --url https://api.incident.io/v3/teams/{id} \
  --header 'Authorization: Bearer <token>'
{
  "team": {
    "catalog_entry": {
      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
      "name": "Primary On-call"
    },
    "id": "abc123",
    "members": [
      {
        "email": "lisa@incident.io",
        "id": "01FCNDV6P870EA6S7TK1DSYDG0",
        "name": "Lisa Karlin Curtis",
        "slack_user_id": "U02AYNF2XJM"
      }
    ],
    "name": "abc123"
  }
}

Authorizations

Authorization
string
header
required

API key from your incident.io dashboard (Settings → API keys)

Path Parameters

id
string
required

Unique ID of the team

Example:

"abc123"

Response

200 - application/json

OK response.

team
object
required
Example:
{
  "catalog_entry": {
    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
    "name": "Primary On-call"
  },
  "id": "abc123",
  "members": [
    {
      "email": "lisa@incident.io",
      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
      "name": "Lisa Karlin Curtis",
      "slack_user_id": "U02AYNF2XJM"
    }
  ],
  "name": "abc123"
}