GET
/
members
List Organization Members
curl --request GET \
  --url https://{tenantDomain}/my-org/members \
  --header 'Authorization: Bearer <token>'
{
  "members": [
    {
      "user_id": "auth0|123234235",
      "roles": [
        {
          "id": "rol_BKI0BKI0BKI0BKI0",
          "name": "role1"
        },
        {
          "id": "rol_BKW1BKIfBKd0BaI0",
          "name": "role2"
        }
      ],
      "email": "roadrunner@acme.com"
    }
  ]
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Query Parameters

q
string

Query in Lucene query string syntax.

fields
string

Comma-separated list of fields to include or exclude (based on value provided for include_fields) in the result. Leave empty to retrieve all fields.

include_fields
boolean
default:true

Whether specified fields are to be included (true) or excluded (false).

from
string

Optional Id from which to start selection.

take
integer

Number of results per page. Defaults to 50.

Response

200
application/json

List members for an organization.

The response is of type object.