Set html for interstitial

Request Information
URL PUT {{basepath}}/parkingPageHtml/:document
CategoryRedirect

Description

Allows you to set the default page for the redirect server cluster attached to your project.

Expects a html string in the request body

Returns a DomainParkingPutResponse object.

Url variables
:documentinterstitial
JSON
<html>
<head>
    
        <style>
            body{
              background-color:#222;
              color:white;
            }
            </style>
    
   <meta http-equiv="refresh" 
         content="10;URL=[[redirectUrlhtmlentities]]">
</head>
<body>
<h1>[[domain]]</h1>
<marquee direction="right" >You are being redirected to [[redirectUrl]]</marquee>
</body>
</html>

Example responses

Set html for interstitial
Request Method & URL
PUT {{basepath}}/parkingPageHtml/:document
Request Body:
<html>
<head>
    
        <style>
            body{
              background-color:purple;
              color:white;
            }
            </style>
    
   <!--<meta http-equiv="refresh" 
         content="300;URL=[[redirectUrlhtmlentities]]">-->
</head>
<body>
<h1>[[domain]]</h1>
<marquee direction="right" >You are being redirected to [[redirectUrl]]</marquee>
</body>
</html>
Url variables
:documentinterstitial
Response Code:
200 OK
Response Body:
{
    "responseId": "mapi429_896d634e4dc627df8e3700bd33498c27b8132698",
    "status": "ok",
    "message": "Html has been stored"
}