https://doordash.launchgiftcards.com/order/37701fb5-c998-4a39-bf74-76f87493740e

Submitted URL:
https://doordash.launchgiftcards.com/order/37701fb5-c998-4a39-bf74-76f87493740e
Report Finished:

The outgoing links identified from the page

LinkText
https://cx.launchgiftcards.com/access_support/englishCustomer Support

JavaScript Variables · 4 found

Global JavaScript variables loaded on the window object of a page, are variables declared outside of functions and accessible from anywhere in the code within the current scope

NameType
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
postEventfunction

Console log messages · 2 found

Messages logged to the web console

TypeCategoryLog
errornetwork
URL
https://doordash.launchgiftcards.com/order/37701fb5-c998-4a39-bf74-76f87493740e
Text
Failed to load resource: the server responded with a status of 403 ()
errornetwork
URL
https://doordash.launchgiftcards.com/favicon.ico
Text
Failed to load resource: the server responded with a status of 403 ()

HTML

The raw HTML body of the page

<!DOCTYPE html><html lang="en"><head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<div style="justify-content: center; display:flex">
<div style="padding:10%; text-align:left">

<h1 style="font-family: Tahoma, sans-serif; font-size: 2.5em; color: #333333;">Hello! </h1>

<h2 style="font-family: Tahoma, sans-serif; font-size: 1.5em; color: #333333;">We are unavailable from your location</h2>
<h3 style="font-family: Tahoma, sans-serif; font-size: 1.em; color: #333333;">Need help? Please visit <a target="_blank" href="https://cx.launchgiftcards.com/access_support/english">Customer Support</a></h3>
</div>
</div>
<script>
        document.addEventListener("DOMContentLoaded", () => {
            const curDomain = window.location.hostname;
	    const partnerKey = curDomain.split('.')[0]
            const URL = '/api/x/e';
            
            const eventType = {
                metadata: { errorCode: "g" },
                page: "block",
                type: "page_view",
            };
            
            postEvent(URL, partnerKey, eventType);
        });

        function postEvent(URL, partnerKey, eventType) {
            fetch(URL, {
                method: "POST",
                headers: {
                    "Content-Type": "application/json",
                    "Partner": partnerKey,
                },
                body: JSON.stringify(eventType),
            })
            .catch(error => console.error("Error:", error));
        }
    </script>

</body></html>