List Teams

GET

/v1/teams

Returns the list of teams (departments/groups) configured in the workspace for conversation routing.

Parameters

NameTypeDescription
pageintegerPage number
per_pageintegerRecords per page

Responses

200List of teams
{
  "data": [
    {
      "id": "tm_301",
      "name": "Technical Support",
      "description": "Tier 2 Technical Escalations",
      "created_at": "2026-08-01T10:00:00Z"
    },
    {
      "id": "tm_302",
      "name": "Billing & Accounts",
      "description": "Invoices and Payments",
      "created_at": "2026-08-01T10:05:00Z"
    }
  ]
}