removeWafBlacklistIPs — Removing from the IP blacklist

The IP blacklist may be used to block visitors from particular IP addresses. The removeWafBlacklistIPs method removes items from the blacklist.

The API endpoint is:

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

Request Format

  • SiteLockOnlineRequest

    • 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

    • removeWafBlacklistIPs: The method name

      • site_id: The ID of the site for which to remove IPs from the blicklist

      • ips: A list of IP addresses to be removed from the blacklist

        • ip: (Repeatable) An IP address. The acceptable formats are:

          • Single IP address (192.168.0.1)

          • Network block in CIDR format (192.186.0.0/28)

          • An IP address range (192.168.0.1-192.168.1.30)

Example request

<SiteLockOnlineRequest>
    <authentication>
        <user>Username</user>
        <password>Password</password>
    </authentication>
    <removeWafBlacklistIPs>
        <site_id>1234567</site_id>
        <ips>
            <ip>1.2.3.12</ip>
        </ips>
    </removeWafBlacklistIPs>
</SiteLockOnlineRequest>

Response format

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

    • removeWafBlacklistIPs: The method name

      • exceptions: A list of exceptions in the Common exception format

      • ips: A list of IP addresses that were removed from the blacklist

        • ip: (Repeatable) An IP address

Example response

<SiteLockOnlineResponse>
    <removeWafBlacklistIPs>
    <exceptions>
    </exceptions>
    <ips>
        <ip>10.2.2.100</ip>
    </ips>
    </removeWafBlacklistIPs>
</SiteLockOnlineResponse>