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| Parameter | Type | Description |
|---|---|---|
search | string | Filter by team name |
limit | integer | Results per page (max 100, default 20) |
offset | integer | Pagination 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
}
}