cURL
curl --request GET \ --url https://api.example.com/team/members
Retrieve team members with Stripe-style pagination.
100
{ "object": "list", "data": [ { "id": "member-uuid", "user_id": "user-uuid", "role": "admin", "created_at": "2026-04-08T18:00:00Z", "email": "[email protected]", "full_name": "Alex Example", "avatar_url": "https://example.com/avatar.jpg" } ], "has_more": true, "url": "/team/members" }