POST

Storage.Delete

Alias of Storage.Remove. Hard-delete a warehouse and cascade related stock links.

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

NameTypeSampleExplanation
storage_id
post
int3Warehouse 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.Delete",
    "method": "POST",
    "headers": {
        "Authorization": "Bearer YOUR TOKEN"
    },
    "body": {
        "storage_id": "3"
    },
    "url_user": "https:\/\/{user}.bull36.com\/app\/Storage.Delete",
    "url_domain": "https:\/\/{domain}\/app\/Storage.Delete"
}

Endpoint

POST /app/Storage.Delete
POST https://{user}.bull36.com/app/Storage.Delete
POST https://{domain}/app/Storage.Delete

Sample 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.Delete', { method: 'POST', headers: { Authorization: 'Bearer ' + token }, body });
console.log(await res.json());

Error Example

{
    "success": 0,
    "message": "Storage was not found."
}