deleteAddon — Deleting SiteLock Backup & Recovery
The deleteAddon
method deletes the SiteLock Backup subscription for a site.
SiteLock Backup must be deleted using a specific subscription ID (see getStatus for information on retrieving specific subscription IDs on demand).
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
-
-
deleteAddon: The method name
-
addonInfo: (Repeatable) The subscription to remove. Deletions of this and other products that fall under this request may be combined, as long as each has a separate
addonInfo
element.-
subscription_id: A unique value that identifies the instance of the service
-
-
-
While it won’t cause an error to specify an |
Response format
-
SiteLockOnlineResponse: This element is used to delineate the full API response.
-
deleteAddon: The method name
-
addonStatuses: A list of Backup subscriptions that were removed
-
addonStatus: (Repeatable) This element corresponds to the
addonInfo
element in the request-
account_id: The SiteLock account ID determined by the
subscription_id
in the request -
site_id: The SiteLock site ID from the
subscription_id
in the request -
subscription_id: The ID of the deleted subscription
-
status: Can be one of the following values:
-
ok: Success return value
-
error: Error return value. The
message
element contains more detail.
-
-
code: This element is present when
status
iserror
-
message: The detailed success or error message
-
-
-
-
Example response
<SiteLockOnlineResponse>
<deleteAddon>
<addonStatuses>
<addonStatus>
<status>ok</status>
<message>Backup Subscription deleted ok</message>
<account_id>123456</account_id>
<site_id>654321</site_id>
<subscription_id>442676</subscription_id>
</addonStatus>
</addonStatuses>
</deleteAddon>
</SiteLockOnlineResponse>