# Custom domains for events

{% hint style="danger" %}
This section describes how to configure the Didomi consent notice through its programmatic API and the `window.didomiConfig` object.

Most configuration options are available through the [Didomi Console](https://console.didomi.io/), and this documentation only applies to edge cases or custom implementations that require it.
{% endhint %}

In some hybrid apps (Electron, Cordova, etc.), the `location.host` value used by the Web SDK is not defined. This can cause the following issue in analytics data and events:

* Your organization has a lot of page views with no consent rate.

A custom domain can be set as part of the `didomiConfig` object to ensure that some domain is associated with API events for those applications.

You can add a `customDomain` property to the `app` object in the configuration:

```javascript
window.didomiConfig = {
  app: {
    customDomain: "custom.app.domain",
  },
};
```

{% hint style="warning" %}
Please ensure that you specify a valid domain in one of the following formats:

* A valid DNS name

  **Example:** `sandbox.domain.io`, `www.domain.io`
* A valid iOS bundle ID or Android package ID

  **Example:** `com.example.app`, `com.example.app.ios`, `com.example.app.macos`

Otherwise, it will be filtered out and not included in your analytics event data.
{% endhint %}

This configuration option is also available in the [Didomi Console](https://console.didomi.io/) as part of the Custom JSON field in the `Customization` tab.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://developers.didomi.io/cmp/web-sdk/consent-notice/custom-domains-for-events.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
