POST
Suppliers.Delete
Alias of Suppliers.Remove. Hard-delete an account-owned supplier.
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 Suppliers record when the user has permission.
Push Service
Pushes event suppliers.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 |
|---|---|---|---|
supplier_idpost | int | 8 | Supplier id. Aliases: suppliers_id, 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\/Suppliers.Delete",
"method": "POST",
"headers": {
"Authorization": "Bearer YOUR TOKEN"
},
"body": {
"supplier_id": "8"
},
"url_user": "https:\/\/{user}.bull36.com\/app\/Suppliers.Delete",
"url_domain": "https:\/\/{domain}\/app\/Suppliers.Delete"
}Endpoint
POST /app/Suppliers.Delete
POST https://{user}.bull36.com/app/Suppliers.Delete
POST https://{domain}/app/Suppliers.DeleteSample Output
{
"success": 1,
"id": 8,
"supplier_id": 8,
"suppliers_id": 8,
"message": "Supplier removed successfully.",
"socket_event": "suppliers.deleted"
}JavaScript Example
const token = 'YOUR TOKEN';
const body = new URLSearchParams({ supplier_id: '8' });
const res = await fetch('/app/Suppliers.Delete', { method: 'POST', headers: { Authorization: 'Bearer ' + token }, body });
console.log(await res.json());Error Example
{
"success": 0,
"message": "Supplier was not found."
}