AppHub Tether — CloudStore
CloudStore Delete
Permanently removes a specific cloud key for the current AppHub user under your app. This action is irreversible.
POST
http://127.0.0.1:7420/cloudstore/delete
Requires
Authorization: AppID:AppKey — launch token alone is not accepted. See CloudStore Authentication
This endpoint requires AppHub Store to be running on your machine. The live tester calls your local AppHub instance directly.
Request body
| Field | Type | Required | Description |
|---|---|---|---|
| cloudkey | string | required | Key to permanently remove |
Test this endpoint
Headers
Body
Success response 200
{
"ok": true,
"success": true,
"message": "Cloud data deleted successfully."
}
Errors
| Reason | Cause |
|---|---|
missing_cloudkey | cloudkey field not provided |
missing_app_credentials | Authorization: AppID:AppKey header not sent |
no_account | No user is logged in to AppHub |
upstream_error | CloudStore API returned an error |