Skip to main content
GET
/
organizations
/
current
/
members
List organization members
curl --request GET \
  --url https://app.usechar.ai/api/organizations/current/members \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "role": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "user": {
      "id": "<string>",
      "email": "<string>",
      "name": "<string>",
      "avatar_url": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.usechar.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

WorkOS JWT token. Obtain via WorkOS AuthKit authentication flow. The token must include organization_id claim for organization-scoped endpoints.

Response

OK

id
string
required

Membership record ID for this organization user.

role
string
required

Organization role assigned to the member (admin or member).

created_at
string<date-time>
required

Timestamp when the membership was created.

user
object
required

User details for this member