Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Go
package example import ( context "context" client "github.com/auth0/go-auth0/management/management/client" option "github.com/auth0/go-auth0/management/management/option" ) func do() { client := client.NewClient( option.WithToken( "<token>", ), ) client.Organizations.EnabledConnections.Delete( context.TODO(), "id", "connectionId", ) }
特定の組織で特定の接続を無効にします。無効にすると、組織メンバーはその接続を使用して認証できなくなります。
注: この操作によって、接続がテナントから削除されることはありません。
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
組織の識別子。
50
接続の識別子。
1 - 50
組織から接続が正常に削除されました。