POST

Customer.Entries.Update

Update an owned entry row when client_portal_allow_edit_entries=1. Send changed dataN / status fields only. Alias: Customer.Entries.Edit. Staff Entries.Update is unchanged.

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

  • Runs the Customer.Entries.Update function and returns JSON.

Push Service

No push is sent because this function only reads data or returns helper information.

Automation

No automation is run for this function.

Special Instructions

  • Requires Customer.Login token + allow_edit. Skips password/file/formula/customer/team_member fields like the dashboard client portal.
  • No Add/Delete on client portal — those stay staff-only.

Required Parameters

NameTypeSampleExplanation
id
post
string66aa00000000000000000001Row id. Aliases: row_id, _id.

Optional Parameters

NameTypeSampleWhat it gives
status
post
string123Optional status key.
data1
post
string20Any editable dataN field for the tab.

Authentication

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

Authorization: Bearer YOUR TOKEN

Sample Request

{
    "url": "\/app\/Customer.Entries.Update",
    "method": "POST",
    "headers": {
        "Authorization": "Bearer YOUR TOKEN"
    },
    "body": {
        "id": "66aa00000000000000000001",
        "data1": "21"
    },
    "url_user": "https:\/\/{user}.bull36.com\/app\/Customer.Entries.Update",
    "url_domain": "https:\/\/{domain}\/app\/Customer.Entries.Update"
}

Endpoint

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

Sample Output

{
    "success": 1,
    "message": "Success",
    "row_id": "66aa00000000000000000001"
}

JavaScript Example

const token = 'YOUR TOKEN';
const body = new URLSearchParams();
body.set('id', '66aa00000000000000000001');
body.set('data1', '21');

const res = await fetch('/app/Customer.Entries.Update', {
  method: 'POST',
  headers: { Authorization: `Bearer ${token}` },
  body
});
const data = await res.json();
console.log(data);

Error Example

{
    "success": 0,
    "error": "permission_denied"
}