Management API
Up to 1000 organization members can be displayed using the Auth0 Dashboard or Management API, though more may exist.
GET
call to the Get User Organizations
endpoint. Be sure to replace the USER_ID
and MGMT_API_ACCESS_TOKEN
placeholder values with the user ID and your , respectively.
Find Your Auth0 DomainIf your Auth0 domain is your tenant name, your regional subdomain (unless your tenant is in the US region and was created before June 2020), plus
.auth0.com
. For example, if your tenant name were travel0
, your Auth0 domain name would be travel0.us.auth0.com
. (If your tenant were in the US and created before June 2020, then your domain name would be https://travel0.auth0.com
.)If you are using custom domains, this should be your custom domain name.USER_ID
| ID of the user for which you want to retrieve organization membership. |
| MGMT_API_ACCESS_TOKEN
| Access Token for the Management API with the scope read:organizations
. |
Response status codes
Possible response status codes are as follows:Status code | Error code | Message | Cause |
---|---|---|---|
200 | Organizations successfully retrieved. | ||
400 | invalid_uri | invalid_request_uri | The path is not valid. |
400 | invalid_query_string | Invalid request query string. The message will vary depending on the cause. | The query string is not valid. |
401 | Invalid token. | ||
401 | Invalid signature received for JSON Web Token validation. | ||
403 | insufficient_scope | Insufficient scope; expected any of: read:organizations . | Tried to read/write a field that is not allowed with provided bearer token scopes. |
404 | User not found | ||
429 | Too many requests. Check the X-RateLimit-Limit, X-RateLimit-Remaining and X-RateLimit-Reset headers. |