Runframe
API Reference

Teams

Runframe V1 teams API. Search teams by name for incident filters and routing.

Use this endpoint to discover the exact team name before filtering incidents by team_name.


List Teams

GET /api/v1/teams
ParameterTypeDescription
searchstringFilter by team name
limitintegerResults per page (max 100, default 20)
offsetintegerPagination offset (default 0)

Response:

{
  "success": true,
  "data": {
    "items": [
      {
        "name": "Platform",
        "description": null,
        "member_count": 6,
        "is_active": true
      }
    ],
    "total": 1,
    "has_more": false,
    "next_offset": null
  }
}

On this page