Skip to main content
GET
/
api
/
teams
List user's teams
curl --request GET \
  --url https://api.example.com/api/teams \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 123,
      "name": "<string>",
      "slug": "<string>",
      "created_by": "<string>",
      "is_active": true,
      "created_at": "<string>",
      "updated_at": "<string>",
      "member_count": 123
    }
  ],
  "page": {
    "limit": 123,
    "offset": 123,
    "total": 123
  }
}

Authorizations

Authorization
string
header
required

Auth0 JWT access token

Query Parameters

limit
string

Number of results to return (1-2000, default 25)

Example:

"25"

offset
string
Example:

"0"

Response

200 - application/json

List of teams

data
object[]
required
page
object
required