POST
Suppliers.Remove
Hard-delete an account-owned supplier (user_id = owner). Shared system suppliers (user_id = 0) cannot be deleted. Alias: Suppliers.Delete. Requires owner or member-admin.
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.Remove",
"method": "POST",
"headers": {
"Authorization": "Bearer YOUR TOKEN"
},
"body": {
"supplier_id": "8"
},
"url_user": "https:\/\/{user}.bull36.com\/app\/Suppliers.Remove",
"url_domain": "https:\/\/{domain}\/app\/Suppliers.Remove"
}Endpoint
POST /app/Suppliers.Remove
POST https://{user}.bull36.com/app/Suppliers.Remove
POST https://{domain}/app/Suppliers.RemoveSample 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.Remove', { method: 'POST', headers: { Authorization: 'Bearer ' + token }, body });
console.log(await res.json());Error Example
{
"success": 0,
"message": "Supplier was not found."
}