Enable the BI Connector

This section shows you how to enable the BI Connector on an existing cluster.

Modify the cluster

The BI Connector is enabled by modifying a cluster attribute with a PATCH request.

  • Set biConnector.enabled to true to enable the BI Connector for this cluster.

  • You can disable it at any time by setting this attribute to false again.

Request

In the following example, a random value 498ae72f-411f-11eb-9d07-046c59cc737e is used as the cluster ID.

curl --include \
    --request PATCH \
    --user "clientname@ionos.com:Mb2.r5oHf-0t" \
    --header "Content-Type: application/json" \
    --data-binary '{
      "properties": {
        "biConnector": {
          "enabled": true
        }
      }
    }' \
    https://api.ionos.com/databases/mongodb/clusters/498ae72f-411f-11eb-9d07-046c59cc737e

Response

200 Successful operation

  • The patched resource is returned.

  • The biConnector property now includes the host and port attributes needed to connect to the BI Connector. These are read-only attributes and cannot be changed.

  • At this point, you have enabled the BI Connector on your database.

{
  "type": "cluster",
  "id": "498ae72f-411f-11eb-9d07-046c59cc737e",
  "metadata": {...},
  "properties": {
    ...
    "biConnector": {
      "enabled": true,
      "host": "r1.m-65f4a879f126e3c4.mongodb.de-fra.ionos.com",
      "port": 27015
    },
    ...
  }
}

Last updated

Was this helpful?

Revision created

fixed broken links