Skip to main content
GET
/
v2
/
orgs
/
{orgSlug}
/
members
List Org Members
curl --request GET \
  --url https://api.studio.prisme.ai/v2/orgs/{orgSlug}/members \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "orgSlug": "<string>",
      "userId": "<string>",
      "status": "active",
      "id": "<string>",
      "roleSlug": "<string>",
      "invitedBy": "<string>",
      "invitedAt": "<string>",
      "inviteEmail": "<string>",
      "inviteToken": "<string>",
      "joinedAt": "<string>",
      "joinedVia": "direct",
      "groups": [
        "<string>"
      ],
      "createdBy": "<string>",
      "updatedBy": "<string>",
      "createdAt": "<string>",
      "updatedAt": "<string>"
    }
  ],
  "total": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.prisme.ai/llms.txt

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

Authorizations

Authorization
string
header
required

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

Path Parameters

orgSlug
string
required

Query Parameters

limit
number
page
number
status
string
sort
string

Sort field and direction, e.g. -createdAt

userIds
string

Comma-separated list of user IDs to filter on

includeGroups
boolean

When true, each returned membership includes a groups field listing the slugs of org groups the user belongs to. Requires an additional lookup per page.

Response

Success

results
object[]
total
number