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
}
}Returns all active teams the authenticated user is a member of.
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
}
}Auth0 JWT access token
Number of results to return (1-2000, default 25)
"25"
"0"