removeWafBlacklistUrls — Removing from the URL blacklist

The URL blacklist is used to control whether requests are blocked based on the requested URL pattern. The removeWafBlacklistUrls method removes items from the blacklist.

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

    • removeWafBlacklistUrls: The method name

      • site_id: The ID of the site for which to remove the URLs from the blacklist

      • url: A list of URLs to remove from the blacklist

        • urls: (Repeatable) The exact path to remove from the blacklist. The pattern doesn’t have to be specified for this call.

Example request

<SiteLockOnlineRequest>
    <authentication>
        <user>Username</user>
        <password>Password</password>
    </authentication>
    <removeWafBlacklistUrls>
        <site_id>1234567</site_id>
        <urls>
            <url>/admin</url>
        </urls>
    </removeWafBlacklistUrls>
</SiteLockOnlineRequest>

Response format

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

    • removeWafUrlBlacklist: The method name

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

      • urls: A list of URLs that were removed from the blacklist

        • url: (Repeatable) The URL that was removed from the blacklist

          • path: The path that was removed from the blacklist

          • pattern: The pattern that the path matches

Example response

<SiteLockOnlineResponse>
    <removeWafBlacklistUrls>
        <exceptions>
        </exceptions>
        <status>ok</status>
        <urls>
            <url path="/admincp" pattern="CONTAINS" />
        </urls>
    </removeWafBlacklistUrls>
</SiteLockOnlineResponse>