POST
Workdiary.ProjectTime.Save
Insert one or more project_work_time rows for the logged-in user. Send time_spend_name and work_time as matching arrays, same as the dashboard form.
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.ProjectTime.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
| Name | Type | Sample | Explanation |
|---|---|---|---|
time_spend_namepost | string | dev | Category name, or array of names. |
Optional Parameters
| Name | Type | Sample | What it gives |
|---|---|---|---|
project_idpost | int | 10 | Project id. |
work_timepost | string | 01:00 | Timer value, or array matching time_spend_name. |
Authentication
Send the bearer token returned by Login in the request header.
Authorization: Bearer YOUR TOKEN
Sample Request
{
"url": "\/app\/Workdiary.ProjectTime.Save",
"method": "POST",
"headers": {
"Authorization": "Bearer YOUR TOKEN"
},
"body": {
"project_id": "10",
"time_spend_name": "dev",
"work_time": "01:00"
},
"url_user": "https:\/\/{user}.bull36.com\/app\/Workdiary.ProjectTime.Save",
"url_domain": "https:\/\/{domain}\/app\/Workdiary.ProjectTime.Save"
}Endpoint
POST /app/Workdiary.ProjectTime.Save
POST https://{user}.bull36.com/app/Workdiary.ProjectTime.Save
POST https://{domain}/app/Workdiary.ProjectTime.SaveSample Output
{
"success": 1,
"message": "added successfully",
"project_id": 10
}JavaScript Example
const token = 'YOUR TOKEN';
const body = new URLSearchParams({ project_id: '10', time_spend_name: 'dev', work_time: '01:00' });
const res = await fetch('/app/Workdiary.ProjectTime.Save', { method: 'POST', headers: { Authorization: 'Bearer ' + token }, body });
console.log(await res.json());Error Example
{
"success": 0,
"message": "Please try again later"
}