Hello,
I can create a new Client using the Management API, but by default it gets all of the connections enabled. I would like to be able to create a Client and only enable a single Connection for it.
curl -X “POST” “https://domain/api/v2/clients” is what I use to create the Client.
I know we can use this one:
curl -X “PATCH” “https://domain/api/v2/connections/con_id-goes-here” to specify which Client can use the connection, but I would need to specify ALL of the Clients every time a new client gets created. If by mistake I only set one, all of the other Clients suddenly don’t have access to this Connection.
I’m pretty sure there is a much better way to achieve this, I just can’t find it