disableWafSSL — Removing SSL from a site

If a site with SSL loses its SSL status for whatever reason, call disableWafSSL in order to also remove the Firewall & CDN certificate.

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

    • disableWafSSL: The method name

      • site_id: The ID of the site from which to remove SSL

Example request

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

Response format

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

    • disableWafSSL: The method name

      • status: Either ok or error

        • error: The error message. The element is present if status is error.

          • code: [attribute] - The error code

Example success response

<SiteLockOnlineResponse>
    <disableWafSSL>
        <status>ok</status>
    </disableWafSSL>
</SiteLockOnlineResponse>

Example error response

<SiteLockOnlineResponse>
    <disableWafSSL>
        <error code="-98">WAF Addon Not Found</error>
    </disableWafSSL>
</SiteLockOnlineResponse>