removeWafCertificate — Removing your SSL certificate from Firewall & CDN

The removeWafCertificate method removes your SSL certificate from the Firewall & CDN.

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

    • removeWAFCertificate: The method name

      • site_id: The ID of the site for which to remove the certificate

Example request

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

Response format

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

    • removeWAFCertificate: The method name

      • message: The detailed success or error message

      • status: Either ok or error

Example response

<SiteLockOnlineResponse>
    <removeWAFCertificate>
        <message>Successfully removed.</message>
        <status>ok</status>
    </removeWAFCertificate>
</SiteLockOnlineResponse>