Skip to main content

Domain Control

Domain control limits content delivery to authorized domains, ensuring that your content is only accessible on approved websites and platforms, reducing the risk of unauthorized distribution.

To enable domain control and specify the allowed domains for your content, set associate API request body during creation:

Configure the domain_control request body with the following options:

Query ParametersDescription
enabledtrue
domainsSpecify the domains you want to allow access in the array.

For example, if you want to restrict the delivery of your content to only two domains: example.com and test.com. You can enable the domain control feature and specify these domains in the request body like this:

"domain_control":{
"enabled":true,
"domains": [
"example.com",
"test.com"
]
}