v1

latestOpenAPI 3.0.02026-08-0650184174.6 KB
Teams

Returns a list of all teams and their members

get/alerting/teams

Response

Successful operation

Example response

{
  "teams": [
    {
      "id": 1,
      "name": "Team Rocket",
      "members": [
        {
          "id": 1,
          "name": "John Doe",
          "type": "user"
        }
      ]
    },
    {
      "id": 2,
      "name": "The A-Team",
      "members": [
        {
          "id": 2,
          "name": "John 'Hannibal' Smith",
          "type": "user"
        },
        {
          "id": 3,
          "name": "Templeton 'Faceman' Peck",
          "type": "contact"
        }
      ]
    }
  ]
}