Part3 Developers

Organization members list

GET /organization/{orgId}/members

List organization members

GET
/organization/{orgId}/members
AuthorizationBearer <token>

In: header

Path Parameters

orgId*string

Organization ID. Returned from GET /v1/client/me for client tokens, or any org-list response.

Response Body

application/json

application/json

application/json

curl -X GET "https://api.part3.io/v1/organization/org_8a1b2c3d4e/members"
{
  "data": [
    {
      "userId": "user_99a8b7c6d5",
      "name": "Anika Patel",
      "email": "anika@example.com",
      "role": "admin",
      "active": true,
      "enabledMfa": true
    },
    {
      "userId": "user_3b2a1c9d8e",
      "name": "Marcus Chen",
      "email": "marcus@example.com",
      "role": "member",
      "active": true,
      "enabledMfa": false
    }
  ]
}
{
  "error": "Insufficient permissions"
}
{
  "error": "Insufficient permissions"
}