Remove a Microsoft Active Directory (AD) Bridge

You can use Oracle Identity Cloud Service to remove a Microsoft Active Directory (AD) Bridge.

  1. In the Identity Cloud Service console, expand the Navigation Drawer, click Settings, and then click Directory Integrations.
  2. Click the Action menu The Action menu to the right of the domain that contains the AD Bridge that you want to remove.
  3. Select Remove.
  4. In the Confirmation window, click OK.
    By removing the domain, you’re removing the AD Bridge associated with the domain. To ensure that your bridge is deleted cleanly and completely, you must delete the client associated with the bridge.

  5. Double-click the ad-id-bridge.exe file.
    The Identity Cloud Service Microsoft Active Directory Bridge Installer appears.
  6. In the Welcome dialog box, click Next.
  7. 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 Cloud Service 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 Oracle Identity Cloud Service: First REST API Call tutorial to learn how to get this access token.

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

  2. From this list, find the Client ID of the AD Bridge that you want to remove.
  3. Run the following CURL command to remove the client for the AD 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 AD Bridge that you want to remove.

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