When working with organizations programmatically, you may need to retrieve either a list of all organizations or organizations individually by name or ID.
The Management API should be accessed using only a confidential client. Its use is subject to Auth0 Management API rate limits.

Retrieve tenant organizations

You can retrieve all organizations for a tenant via the .
To retrieve more than 1000 results, you must use the checkpoint pagination method. To learn more, see the Get Organizations endpoint in our API Explorer.
Make a GET call to the Get Organizations endpoint. Be sure to replace the MGMT_API_ACCESS_TOKEN placeholder value with your Management API .
curl --request GET \
  --url 'https://{yourDomain}/api/v2/organizations' \
  --header 'authorization: Bearer MGMT_API_ACCESS_TOKEN'
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.
ValueDescription
MGMT_API_ACCESS_TOKENAccess Token for the Management API with the scope read:organizations.

Response status codes

Possible response status codes are as follows:
Status codeError codeMessageCause
200Organizations successfully retrieved.
400invalid_pagingRequesting page exceeds the allowed maximum of 1000 records.API has been limited to only return up to 1000 records.
400invalid_query_stringInvalid request query string. The message will vary depending on the cause.The query string is not valid.
401Invalid token.
401Invalid signature received for JSON Web Token validation.
401Client is not global.
403insufficient_scopeInsufficient scope; expected any of: read:organizations.Tried to read/write a field that is not allowed with provided bearer token scopes.
429Too many requests. Check the X-RateLimit-Limit, X-RateLimit-Remaining and X-RateLimit-Reset headers.

Retrieve organization by ID

You can retrieve an organization by its ID through the Management API. Make a GET call to the Get Organization endpoint. Be sure to replace the ORG_ID and MGMT_API_ACCESS_TOKEN placeholder values with your organization ID and Management API Access Token, respectively.
curl --request GET \
  --url 'https://{yourDomain}/api/v2/organizations/ORG_ID' \
  --header 'authorization: Bearer MGMT_API_ACCESS_TOKEN'
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.
ValueDescription
ORG_IDID of the organization you want to retrieve.
MGMT_API_ACCESS_TOKENAccess Token for the Management API with the scope read:organizations.

Response status codes

Possible response status codes are as follows:
Status codeError codeMessageCause
200Organization successfully retrieved.
400invalid_query_stringInvalid request query string. The message will vary depending on the cause.The query string is not valid.
401Invalid token.
401Invalid signature received for JSON Web Token validation.
401Client is not global.
403insufficient_scopeInsufficient scope; expected any of: read:organizations.Tried to read/write a field that is not allowed with provided bearer token scopes.
429Too many requests. Check the X-RateLimit-Limit, X-RateLimit-Remaining and X-RateLimit-Reset headers.

Retrieve organization by name

You can retrieve an organization by its name through the Management API. Make a GET call to the Get Organization by Name endpoint. Be sure to replace the ORG_NAME and MGMT_API_ACCESS_TOKEN placeholder values with your organization ID and Management API Access Token, respectively.
curl --request GET \
  --url 'https://{yourDomain}/api/v2/organizations/name/ORG_NAME' \
  --header 'authorization: Bearer MGMT_API_ACCESS_TOKEN'
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.
ValueDescription
ORG_ NAMEName of the organization you want to retrieve. Maximum length of 50 characters.
MGMT_API_ACCESS_TOKENAccess Token for the Management API with the scope read:organizations.

Response status codes

Possible response status codes are as follows:
Status codeError codeMessageCause
200Organizations successfully retrieved.
400invalid_query_stringInvalid request query string. The message will vary depending on the cause.The query string is not valid.
401Invalid token.
401Invalid signature received for JSON Web Token validation.
401Client is not global.
403insufficient_scopeInsufficient scope; expected any of: read:organizations.Tried to read/write a field that is not allowed with provided bearer token scopes.
429Too many requests. Check the X-RateLimit-Limit, X-RateLimit-Remaining and X-RateLimit-Reset headers.