deleteBundle — Deleting active product bundles from a site

The deleteBundle method deletes active SiteLock product bundles from a site. SiteLock bundles commonly include a Scan plan and a Firewall & CDN, though some bundles may contain additional products.

The deleteBundle method, unlike deletePlan, deletes all bundled products from the site, including Firewall & CDN and Scan plans. The Firewall & CDN in a bundle doesn’t require using the delete add-on methods required for individual Firewall & CDN products.

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

    • deleteBundle: The method name

      • bundleInfo: A list of sites from which to delete the product bundles

        • site_id: (Repeatable) The ID of the site

          Submitting multiple site_id elements returns multiple site statuses in a single XML response.

Example request

<SiteLockOnlineRequest>
    <authentication>
        <user>Username</user>
        <password>Password</password>
    </authentication>
    <deleteBundle>
        <bundleInfo>
            <site_id>2468012</site_id>
        </bundleInfo>
    </deleteBundle>
</SiteLockOnlineRequest>

Request response

Example success response

<SiteLockOnlineResponse>
    <deleteBundle>
        <bundleStatuses>
            <bundleStatus>
                <site_id>2468012</site_id>
                <status>ok</status>
            </bundleStatus>
        </bundleStatuses>
    </deleteBundle>
</SiteLockOnlineResponse>

Example error response

<SiteLockOnlineResponse>
    <deleteBundle>
        <bundleStatuses>
            <bundleStatus>
                <error>Billing Authority is SiteLock</error>
                <site_id>2468012</site_id>
                <status>error</status>
            </bundleStatus>
        </bundleStatuses>
    </deleteBundle>
</SiteLockOnlineResponse>

Error message

Billing Authority is SiteLock: This error indicates that a bundle was added to the site through a direct sale with SiteLock. Only bundles sold to the user by the partner may be deleted from an active site.