Skip to main content
GET
/
clients
/
{clientId}
/
members
Fetch Client Members
curl --request GET \
  --url https://api.chat-dash.com/v1/public/clients/{clientId}/members \
  --header 'Authorization: <authorization>'
[
  {
    "_id": "<string>",
    "clientId": "<string>",
    "isAdmin": false,
    "name": "<string>",
    "loginId": "<string>",
    "email": "<string>"
  }
]

Headers

Authorization
string
required

All requests to the ChatDash API must be validated with the agency API Key found on your agency profile

Path Parameters

clientId
string
required

The ID of the client

Response

OK

_id
string

The ID of the member

clientId
string

The ID of the client the member is associated with

isAdmin
boolean
default:false

Indicates if the member has admin privileges

name
string

The member's name

loginId
string

The member's login ID

email
string

The member's email address

I