Hi Team,
We have a multi-tenant configuration (we are a B2B company so we have a tenant per client) and I was wondering if I can use auth0 management API to apply a specific modification to all tenants at once.
I didn’t find any subscription level API documentation so the current approach we have of achieving the goal above is this:
- manually creating a machine-to-machine application for each tenant
- saving all client secrets in a store
- running a script that will get management-API access tokens for all client secrets.
- using the access tokens to send a management-API REST call (on for each tenant) to apply the modification.
Is there a different way that will not require us to save and maintain client secrets for all tenants?
Thanks.