Get the current user’s team memberships.
Returns all teams the authenticated user is a member of, along with their role, name, and description.
cURL
curl --request GET \ --url https://api.example.com/v1/users/me/teams
[ { "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "team_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "role": "OWNER", "created_at": 123, "updated_at": 123, "team_name": "<string>", "team_description": "<string>" } ]
Successful Response
Team membership roles.
OWNER
ADMIN
MEMBER
Was this page helpful?