POST

Suppliers.Update

Alias of Suppliers.Edit. Update 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

  • 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

NameTypeSampleExplanation
supplier_id
post
int8Supplier id. Aliases: suppliers_id, id, update_id, data_id.

Optional Parameters

NameTypeSampleWhat it gives
name
post
stringAcme SupplyUpdated supplier name.
phone
post
string0500000000Updated phone.
email
post
string[email protected]Updated email.
company_id
post
string123456789Updated company / VAT id.
contact_name
post
stringDanaUpdated contact name.
language
post
stringheUpdated language.

Authentication

Send the bearer token returned by Login in the request header.

Authorization: Bearer YOUR TOKEN

Sample Request

{
    "url": "\/app\/Suppliers.Update",
    "method": "POST",
    "headers": {
        "Authorization": "Bearer YOUR TOKEN"
    },
    "body": {
        "supplier_id": "8",
        "phone": "0520000000"
    },
    "url_user": "https:\/\/{user}.bull36.com\/app\/Suppliers.Update",
    "url_domain": "https:\/\/{domain}\/app\/Suppliers.Update"
}

Endpoint

POST /app/Suppliers.Update
POST https://{user}.bull36.com/app/Suppliers.Update
POST https://{domain}/app/Suppliers.Update

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

Error Example

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