Giving customers the ability to use auth0 within our SaaS for their customers so I’m creating new applications and databases via the API.
One of the challenges I’m running into is creating a application. The new application has all the connections enabled under the connections tab here:
https://manage.auth0.com/dashboard/us/[brand]/applications/[client_id]/connections
It seems like the only way to disable all those connections is by hitting
PATCH /api/v2/connections/{id}
"enabled_clients": [
"..."
],
Is there a way to set connections via an application that I’m overlooking? Something like:
$this->management->clients()->update($client_id, [
'enabled_connections' => [],
]);
Thanks!