Removing an AD Bridge

Remove an AD bridge from an IAM identity domain.

  1. On the Directory integrations list page, select the AD bridge that you want to remove. If you need help finding the directory integrations page, see Listing Microsoft Active Directory Bridges.
  2. From the Actions menu (Actions Menu) select Remove.
  3. When prompted, confirm the deletion.
    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.
  4. Double-click the ad-id-bridge.exe file.
    The IAM Microsoft Active Directory Bridge Installer appears.
  5. In the Welcome dialog box, select Next.
  6. In the Removal completed dialog box, select 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.