1. Docs
  2. API Reference
  3. List platform-admin members of the Account

List platform-admin members of the Account

GET/portal/v1/accounts/{accountSlug}/members

Authentication

  • Bearer Token Authorization

    JWT access token

Code samples

cURLJavaScriptPythonGo
curl -X GET "https://api.canopy.dev/portal/v1/accounts/{accountSlug}/members" \
  -H "Authorization: Bearer $CANOPY_TOKEN"

Responses

200 AccountMembers returned
{
  "items": [
    {
      "user_id": "string",
      "email": "string",
      "first_name": "string",
      "last_name": "string",
      "avatar_url": "string",
      "account_role": "string",
      "joined_at": "2026-04-20T12:00:00.000Z"
    }
  ]
}

application/json

  • itemsAccountMemberResponseDto[]*
401 Invalid or expired token
403 This token is not authorized for this endpoint (wrong principal type — e.g., admin token on identity-only endpoint, or vice versa)

Returned object

On this page

Related endpoints

DELETERemove a platform admin from the Account