Skip to content

Preview URL Whitelabeling

Overview

Creative preview URLs can be served from a whitelabel domain (preview.ad-delivery.com) as an alternative to the primary domain (my.cavai.com).

URL Mapping

Primary domainWhitelabel domain
https://my.cavai.com/creatives/{id}/{type}/{hash}https://preview.ad-delivery.com/creatives/{id}/{type}/{hash}

Example

  • Primary: https://my.cavai.com/creatives/0-51861-53503-81794/banner/c19b24f398f4edf83b3196667602ada3
  • Whitelabel: https://preview.ad-delivery.com/creatives/0-51861-53503-81794/banner/c19b24f398f4edf83b3196667602ada3

Both URLs serve the same creative preview page. The whitelabel domain is useful when sharing preview links externally, as it avoids exposing the my.cavai.com domain.

Route

The preview route is defined in Application-Frontend/src/router.ts as public_preview:

/creatives/:routeId/:creativeType/:creatives?/:hash

This is a public page (no authentication required) with whitelabel metadata enabled.

Internal documentation