You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Retrieve all clients that have the specified <a href="https://auth0.com/docs/authenticate/identity-providers">connection</a> enabled.
157
+
*
158
+
* <b>Note</b>: The first time you call this endpoint, omit the <code>from</code> parameter. If there are more results, a <code>next</code> value is included in the response. You can use this for subsequent API calls. When <code>next</code> is no longer included in the response, no further results are remaining.
* Retrieves detailed list of all <a href="https://auth0.com/docs/authenticate/identity-providers">connections</a> that match the specified strategy. If no strategy is provided, all connections within your tenant are retrieved. This action can accept a list of fields to include or exclude from the resulting list of connections.
153
198
*
@@ -213,6 +258,10 @@ export class ConnectionsManager extends BaseAPI {
213
258
isCollectionFormatMulti: true,
214
259
},
215
260
},
261
+
{
262
+
key: 'domain_alias',
263
+
config: {},
264
+
},
216
265
{
217
266
key: 'name',
218
267
config: {},
@@ -381,6 +430,38 @@ export class ConnectionsManager extends BaseAPI {
* Update details for a specific <a href="https://auth0.com/docs/authenticate/identity-providers">connection</a>, including option properties for identity provider configuration.
* The identifiers of the clients for which the connection is to be enabled. If the array is empty or the property is not specified, no clients are enabled
3104
+
* DEPRECATED property. Use the PATCH /v2/connections/{id}/clients endpoint to enable the connection for a set of clients.
* The identifiers of the clients for which the connection is to be enabled. If the property is not specified, no clients are enabled. If the array is empty, the connection will be disabled for every client.
3545
+
* DEPRECATED property. Use the PATCH /v2/connections/{id}/clients endpoint to enable or disable the connection for any clients.
0 commit comments