GET
/
v1
/
ticketing
/
teams
curl --request GET \
  --url http://localhost:8000/api/v1/ticketing/teams
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "description": "<string>",
      "members": [
        {
          "id": "<string>",
          "username": "<string>"
        }
      ]
    }
  ],
  "meta": {
    "limit": 123,
    "cursors": {
      "before": "<string>",
      "current": "<string>",
      "next": "<string>"
    }
  }
}

Query Parameters

cursor
string

Cursor to start from. You can find cursors for next & previous pages in the meta.cursors property of the response.

raw
boolean

Include raw response. When you want more data from the source

sort
string
direction
string

Response

200 - application/json
data
object[]
required
meta
object
required