POST
Storage.Remove
Hard-delete a warehouse (dashboard storage_list_record_delete). Cascades: deletes related storage_request rows, removes matching storage_products.id values from ec_product.storage_detail, deletes storage_products for this warehouse, then deletes the storage row. Alias: Storage.Delete. Requires owner or member-admin. Destructive — existing stock links for this warehouse are removed.
Permissions
- User must be logged in with a valid bearer token.
- Returned or changed records are limited by the user permissions, team access, folder access, and account settings.
Action
- Removes the requested Storage record when the user has permission.
Push Service
Pushes event storage.deleted to users who should see this change.
Automation
No automation is run for this function.
Special Instructions
- Send the bearer token on protected calls with Authorization: Bearer YOUR TOKEN.
- Send parameters as POST body fields exactly as documented.
Required Parameters
| Name | Type | Sample | Explanation |
|---|---|---|---|
storage_idpost | int | 3 | Warehouse id. Aliases: id, update_id, data_id. |
Optional Parameters
No optional body parameters are defined for this function.
Authentication
Send the bearer token returned by Login in the request header.
Authorization: Bearer YOUR TOKEN
Sample Request
{
"url": "\/app\/Storage.Remove",
"method": "POST",
"headers": {
"Authorization": "Bearer YOUR TOKEN"
},
"body": {
"storage_id": "3"
},
"url_user": "https:\/\/{user}.bull36.com\/app\/Storage.Remove",
"url_domain": "https:\/\/{domain}\/app\/Storage.Remove"
}Endpoint
POST /app/Storage.Remove
POST https://{user}.bull36.com/app/Storage.Remove
POST https://{domain}/app/Storage.RemoveSample Output
{
"success": 1,
"id": 3,
"storage_id": 3,
"message": "Storage removed successfully.",
"socket_event": "storage.deleted"
}JavaScript Example
const token = 'YOUR TOKEN';
const body = new URLSearchParams({ storage_id: '3' });
const res = await fetch('/app/Storage.Remove', { method: 'POST', headers: { Authorization: 'Bearer ' + token }, body });
console.log(await res.json());Error Example
{
"success": 0,
"message": "Storage was not found."
}