POST

Workdiary.Settings.Save

Update Work diary salary/hours fields on user_detail for a team member. Owner or member-admin only. Alias: Workdiary.Settings.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.Settings.Save 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

No body parameters are required for this function.

Optional Parameters

NameTypeSampleWhat it gives
work_diary_monthly_hour
post
int180Monthly hours target.
work_diary_day_hours
post
int9Day hours.
work_diary_salary
post
string25000Salary amount.
type_of_salary
post
stringmonthlyMaps to work_diary_salary_type.

Authentication

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

Authorization: Bearer YOUR TOKEN

Sample Request

{
    "url": "\/app\/Workdiary.Settings.Save",
    "method": "POST",
    "headers": {
        "Authorization": "Bearer YOUR TOKEN"
    },
    "body": {
        "work_diary_monthly_hour": "180",
        "work_diary_salary": "25000"
    },
    "url_user": "https:\/\/{user}.bull36.com\/app\/Workdiary.Settings.Save",
    "url_domain": "https:\/\/{domain}\/app\/Workdiary.Settings.Save"
}

Endpoint

POST /app/Workdiary.Settings.Save
POST https://{user}.bull36.com/app/Workdiary.Settings.Save
POST https://{domain}/app/Workdiary.Settings.Save

Sample Output

{
    "success": 1,
    "message": "added successfully",
    "user_id": 211
}

JavaScript Example

const token = 'YOUR TOKEN';
const body = new URLSearchParams({ user_id: '211', work_diary_monthly_hour: '180', work_diary_salary: '25000' });
const res = await fetch('/app/Workdiary.Settings.Save', { method: 'POST', headers: { Authorization: 'Bearer ' + token }, body });
console.log(await res.json());

Error Example

{
    "success": 0,
    "message": "Permission denied to edit work diary settings"
}