getWafOrigin — Retrieving the site origin

The getWafOrigin method retrieves the origin server to where the requests are routed.

The API endpoint is:

https://api.sitelock.com/v1/partner

Request format

  • SiteLockOnlineRequest: This element is used to delineate the full API request.

    • authentication: The partner’s username, password, and branding

      • username: The partner’s API username

      • password: The partner’s API password

      • partner: (Optional) The brand name to use in messaging

    • getWafOrigin: The method name

      • site_id: The ID of the site for which to retrieve the origin IP address

Example request

<SiteLockOnlineRequest>
    <authentication>
        <user>Username</user>
        <password>Password</password>
    </authentication>
    <getWafOrigin>
        <site_id>1234567</site_id>
    </getWafOrigin>
</SiteLockOnlineRequest>

Response format

  • SiteLockOnlineRequest: This element is used to delineate the full API request.

    • getWafOrigin: The method name

      • origins: The IP address of the origin server.

      • status: Either ok or error

Example response

<SiteLockOnlineResponse>
    <getWafOrigin>
        <origins>10.10.10.127</origins>
        <status>ok</status>
    </getWafOrigin>
</SiteLockOnlineResponse>