getWafIPWhitelist — Retrieving the IP whitelist

The IP whitelist may be used to universally allow visitors from particular IP addresses. The IP whitelist is used internally by SiteLock to ensure our scanners are always allowed to access the user’s site. The getWafIPWhitelist method retrieves a list of whitelisted IPs for the site.

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

    • getWafIPWhitelist: The method name

      • site_id: The ID of the site for which to retrieve the whitelisted IPs

Example request

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

Response format

  • SiteLockOnlineResponse: This element is used to delineate the full API response.

  • getWafIPWhitelist: The method name

    • ips: A list of whitelisted IPs

      • ip: (Repeatable) An IP address

Example response

<SiteLockOnlineResponse>
    <getWafIPWhitelist>
        <ips>
            <ip>1.2.3.12</ip>
        </ips>
    </getWafIPWhitelist>
</SiteLockOnlineResponse>