GET
/
organizations
/
{organizationId}
/
members
curl --request GET \
  --url https://api.chat-dash.com/v1/public/organizations/{organizationId}/members \
  --header 'Authorization: <authorization>'
[
  {
    "_id": "<string>",
    "name": "<string>",
    "loginId": "<string>",
    "email": "<string>",
    "language": "<string>",
    "type": "<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

organizationId
string
required

The ID of the organization

Response

200
application/json
OK
_id
string

The ID of the member

name
string

The member's name

loginId
string

The member's login ID (case-insensitive)

email
string

The member's email

language
string

The member's dashboard language setting (ISO 639-1)

type
string

The member's type (e.g. individual, member)