cURL
curl --request GET \ --url https://api.dataraven.io/v1/teams \ --header 'Authorization: Bearer <token>'
{ "teams": [ { "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "name": "<string>", "subscription_tier": "free", "created_at": "2023-11-07T05:31:56Z", "member_count": 123, "user_role": "viewer" } ], "pagination": { "page": 123, "limit": 123, "total": 123, "total_pages": 123 } }
Get all teams the authenticated user belongs to.
Returns teams with:
Query parameters:
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Page number
x >= 1
Items per page
1 <= x <= 100
Successful Response
Schema for paginated list of teams response.
Show child attributes
Pagination metadata in responses.