Runframe
API Reference

Teams

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

Use this endpoint to resolve a team name to a UUID before filtering incidents by team_id.


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": [
      {
        "id": "uuid",
        "name": "Platform",
        "description": null,
        "member_count": 6,
        "is_active": true
      }
    ],
    "total": 1,
    "has_more": false,
    "next_offset": null
  }
}

On this page