Skip to main content
GET
/
organizations
/
{id}
/
members
Get organization members
curl --request GET \
  --url http://sandbox.mintlify.com/organizations/{id}/members \
  --header 'Authorization: Bearer <token>'
Lists all members of an organization with their roles and user details.

Permissions

User must be a member of the organization.

Response

Returns an array of members with:
  • Member ID and role (owner, admin, member)
  • User details (id, email, name)
  • Membership timestamps (joined date)

Example

curl -X GET http://localhost:3001/api/organizations/550e8400-e29b-41d4-a716-446655440000/members \
  -H "Authorization: Bearer <token>"

Use Cases

  • Display team members in organization dashboard
  • Show member list for access control management
  • Export member data for reporting

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

Members list retrieved successfully with user details and roles.