Set html for invalidtld

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
:documentinvalidtld
JSON
<html>
<head>
    
        <style>
            body{
              background-color:#222;
              color:white;
            }
            </style>
    
</head>
<body>
        <h1>Parked[[domain]][[path]]</h1>
    <p>This domain is currently parked if you are the owner, please contact support</p>
    <pre>INVALID TLD</pre>
</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"
}