POST

Workdiary.Entry.Update

Update one allowed field on a team_hours row (start_time, end_time, or note) and set color=1, same as the dashboard inline edit.

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 Workdiary.Entry.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

  • 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
data_id
post
int55team_hours id. Aliases: team_hours_id, id.
data_filed
post
stringnoteColumn name: start_time, end_time, or note. Alias: field.
value_t
post
stringofficeNew value.

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\/Workdiary.Entry.Update",
    "method": "POST",
    "headers": {
        "Authorization": "Bearer YOUR TOKEN"
    },
    "body": {
        "data_id": "55",
        "data_filed": "note",
        "value_t": "office"
    },
    "url_user": "https:\/\/{user}.bull36.com\/app\/Workdiary.Entry.Update",
    "url_domain": "https:\/\/{domain}\/app\/Workdiary.Entry.Update"
}

Endpoint

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

Sample Output

{
    "success": 1,
    "message": "Time update",
    "id": 55
}

JavaScript Example

const token = 'YOUR TOKEN';
const body = new URLSearchParams({ data_id: '55', data_filed: 'note', value_t: 'office' });
const res = await fetch('/app/Workdiary.Entry.Update', { method: 'POST', headers: { Authorization: 'Bearer ' + token }, body });
console.log(await res.json());

Error Example

{
    "success": 0,
    "message": "Time not update"
}