v1
latestOpenAPI 3.1.02026-07-2671111437.2 KBURL Forwardings
Create URLForwarding
Sets up a new URL forwarding (redirect) for a domain or subdomain. If this is the first URL forwarding entry, it may modify the A records for the domain accordingly. Note that changes may take up to 24 hours to fully propagate.
post/core/v1/domains/{domainName}/url/forwarding
Path parameters
domainNamestring hostname required
Example:example.com
DomainName is the domain part of the hostname to forward.
Request body
Example request
{
"forwardsTo": "https://destination-site.com",
"host": "www",
"meta": "<meta name='keywords' content='website, forwarding, masked'>",
"title": "Welcome to my forwarded website",
"type": "redirect"
}Response
A successful response containing the created URL forwarding entry.
Example response
{
"domainName": "example.org",
"forwardsTo": "https://destination-site.com",
"host": "www",
"meta": "<meta name='keywords' content='website, forwarding, masked'>",
"title": "Welcome to my forwarded website",
"type": "redirect",
"id": 12345
}