Set HTML for parking page

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
:documentdefault
JSON
<html>
    <head>
        <style>
            body{
              background-color:#333;
              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>
    </body>
</html>

Example responses

Set HTML for parking page
Request Method & URL
PUT {{basepath}}/parkingPageHtml/:document
Request Body:
<html>
    <head>
        <style>
            body{
              background-color:purple;
              color:white;
            }
            </style>
    </head>
    <body>
        <h1>Hello world [[domain]][[path]]</h1>
    <p>Wil je ook een .[[tld]] kopen ga dan hier naar toe</p>
    </body>
</html>
Url variables
:documentdefault
Response Code:
200 OK
Response Body:
{
    "responseId": "mapi429_934ab8122254fcba65e0b85e25a570e9f33f0103",
    "status": "ok",
    "message": "Html has been stored"
}