POST
Suppliers.Edit
Update an account-owned supplier. Send supplier_id plus only the fields to change. Alias: Suppliers.Update. 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
- Updates the requested Suppliers record after validating permissions and input fields.
Push Service
Pushes event suppliers.updated 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.
- Send date/time values in UTC Y-m-d H:i:s format when a date or datetime field is used.
Required Parameters
| Name | Type | Sample | Explanation |
|---|---|---|---|
supplier_idpost | int | 8 | Supplier id. Aliases: suppliers_id, id, update_id, data_id. |
Optional Parameters
| Name | Type | Sample | What it gives |
|---|---|---|---|
namepost | string | Acme Supply | Updated supplier name. |
phonepost | string | 0500000000 | Updated phone. |
emailpost | string | [email protected] | Updated email. |
company_idpost | string | 123456789 | Updated company / VAT id. |
contact_namepost | string | Dana | Updated contact name. |
languagepost | string | he | Updated language. |
Authentication
Send the bearer token returned by Login in the request header.
Authorization: Bearer YOUR TOKEN
Sample Request
{
"url": "\/app\/Suppliers.Edit",
"method": "POST",
"headers": {
"Authorization": "Bearer YOUR TOKEN"
},
"body": {
"supplier_id": "8",
"phone": "0520000000"
},
"url_user": "https:\/\/{user}.bull36.com\/app\/Suppliers.Edit",
"url_domain": "https:\/\/{domain}\/app\/Suppliers.Edit"
}Endpoint
POST /app/Suppliers.Edit
POST https://{user}.bull36.com/app/Suppliers.Edit
POST https://{domain}/app/Suppliers.EditSample Output
{
"success": 1,
"id": 8,
"supplier_id": 8,
"suppliers_id": 8,
"message": "Supplier updated successfully.",
"socket_event": "suppliers.updated"
}JavaScript Example
const token = 'YOUR TOKEN';
const body = new URLSearchParams({ supplier_id: '8', phone: '0520000000' });
const res = await fetch('/app/Suppliers.Edit', { method: 'POST', headers: { Authorization: 'Bearer ' + token }, body });
console.log(await res.json());Error Example
{
"success": 0,
"message": "Supplier was not found."
}