Removing an AD Bridge

Remove an AD bridge from an IAM identity domain.

  1. Open the navigation menu and click Identity & Security. Under Identity, click Domains.
  2. Click the name of the identity domain that you want to work in. You might need to change the compartment to find the domain that you want. Then, click Settings and then Directory integration.
  3. Click the Actions menu (Actions Menu) for the domain that contains the bridge that you want to remove.
  4. Select Remove.
  5. In the Confirmation window, click OK.
    By removing the domain, you're removing the bridge associated with the domain. To ensure that the bridge is deleted cleanly and completely, you must delete the client associated with the bridge.
  6. Double-click the ad-id-bridge.exe file.
    The IAM Microsoft Active Directory Bridge Installer appears.
  7. In the Welcome dialog box, click Next.
  8. In the Removal completed dialog box, click Close.
Important

If you can't remove the client for the AD bridge or the bridge still appears in the Directory integrations page, then complete the following steps:
  1. Run the following cURL command to obtain the client ID that you used to install the client for the AD bridge:
    curl -X GET \
    <Identity_Cloud_Service_URL>/admin/v1/IdentityAgents \
    -H 'Authorization: Bearer <access_token>

    <Identity_Cloud_Service_URL> is a placeholder for the identity domain URL that you used to install the client for the bridge, and <access_token> is a placeholder for the access token that contains the authorization credentials that are required to obtain the client ID.

    See the IAM: First REST API Call tutorial to learn how to get this access token.

    A list of bridge clients that are installed for your identity domain appears.

  2. From this list, find the client ID of the bridge that you want to remove.
  3. Run the following cURL command to remove the client for the bridge:
    curl -X DELETE \
    <Identity_Cloud_Service_URL>/admin/v1/IdentityAgents/<Client_ID> \
    -H 'Authorization: Bearer <access_token>

    <Client_ID> represents the ID of the client for the bridge that you want to remove.

    A 204 (No Content) response appears, signifying that you removed the client for the bridge.