Skip to main content
GET
/
members
List members
curl --request GET \
  --url https://www.dench.com/api/v1/members \
  --header 'Authorization: Bearer <token>'
{
  "members": [
    {
      "userId": "<string>",
      "name": "<string>",
      "email": "<string>",
      "image": "<string>",
      "role": "<string>",
      "joinedAt": 123
    }
  ],
  "organizationId": "<string>",
  "organizationSlug": "<string>",
  "organizationName": "<string>"
}

Authorizations

Authorization
string
header
required

Workspace-scoped Dench API key from workspace settings. This is the same key used by DENCH_API_KEY in sandboxes.

Response

Successful response

members
object[]
required
organizationId
string
required
organizationSlug
string
required
organizationName
string
required