Skip to main content
GET
/
api
/
public
/
organizations
/
{orgId}
/
members
List members
curl --request GET \
  --url https://charts.basedash.com/api/public/organizations/{orgId}/members \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "role": "MEMBER",
      "userId": "<string>",
      "organizationId": "<string>",
      "user": {
        "id": "<string>",
        "fullName": "<string>",
        "avatarUrl": "<string>",
        "email": "<string>",
        "isEmailVerified": true,
        "createdAt": "2023-11-07T05:31:56Z",
        "firstName": "<string>",
        "title": "<string>"
      }
    }
  ],
  "pagination": {
    "nextCursor": "<string>",
    "hasMore": true
  }
}

Authorizations

Authorization
string
header
required

API key authentication using Bearer token format: Bearer <basedash_api_key>

Path Parameters

orgId
string
required

Organization ID

Query Parameters

limit
integer
default:50

Maximum number of items to return (1-100, default 50)

Required range: 1 <= x <= 100
cursor
string

Cursor for pagination (ID of the last item from previous page)

Response

Members retrieved successfully

data
object[]
required
pagination
object
required