Creates or updates a user timesheet.
Request Information
URI Parameters :
None.
Body Parameters :
user_timesheet| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| user_id |
Foreign key of the user this timesheet entry belongs to. |
globally unique identifier | |
| hour_type_id |
Foreign key of the hour type |
globally unique identifier |
Required |
| date_from |
Date+Time timesheet FROM |
date |
Required |
| date_from_rounded |
rounded to the nearest configured interval, used for billing/display. |
date |
Required |
| date_to |
Date+Time timesheet TO |
date |
Required |
| date_to_rounded |
rounded to the nearest configured interval, used for billing/display. |
date |
Required |
| remark |
Additional remark field |
string |
Max length: 4000 |
| is_approved |
Inform if this user_timesheet belongs to a week approved (readonly) |
boolean | |
| is_start_stop |
Indicates this entry was recorded via a start/stop timer rather than manually keyed in. |
boolean | |
| is_time_for_money |
Indicates this time is billable ("time for money") rather than purely informational. |
boolean | |
| db_table_id |
Foreign key to the table timesheet is linked. Can be a jobs,project,company or empty |
globally unique identifier | |
| id_in_table |
Foreign key of the object linked. Can be a jobs.id, project.id , company.id or empty |
globally unique identifier | |
| property_1_checked |
Checked state of the hour type's configurable custom property #1 (see ) for this entry. |
boolean | |
| property_2_checked |
Checked state of the hour type's configurable custom property #2 for this entry. |
boolean | |
| property_3_checked |
Checked state of the hour type's configurable custom property #3 for this entry. |
boolean | |
| property_4_checked |
Checked state of the hour type's configurable custom property #4 for this entry. |
boolean | |
| property_5_checked |
Checked state of the hour type's configurable custom property #5 for this entry. |
boolean | |
| start_latitude_decimal |
Latitude of the user's location when the timer was started. |
decimal number | |
| start_longitude_decimal |
Longitude of the user's location when the timer was started. |
decimal number | |
| end_latitude_decimal |
Latitude of the user's location when the timer was stopped. |
decimal number | |
| end_longitude_decimal |
Longitude of the user's location when the timer was stopped. |
decimal number | |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date | |
| is_confirmed |
offline field: is_confirmed flag |
boolean |
Request Formats :
application/json, text/json
{
"id": "92c131c9-1c43-4387-964a-535b7749898c",
"user_id": "d9f76b94-41d5-429f-a375-8629eb0eb9b5",
"hour_type_id": "74cf43cb-8f90-49dc-9915-fef0486d351a",
"date_from": "2026-09-16T10:14:45.0646908+00:00",
"date_from_rounded": "2026-09-16T10:14:45.0646908+00:00",
"date_to": "2026-09-16T10:14:45.0646908+00:00",
"date_to_rounded": "2026-09-16T10:14:45.0646908+00:00",
"remark": "sample string 8",
"is_approved": true,
"is_start_stop": true,
"is_time_for_money": true,
"db_table_id": "80036502-06be-4555-81c4-2dfa3e7856b5",
"id_in_table": "eed4b213-2e59-4b75-942c-67086d0eca70",
"property_1_checked": true,
"property_2_checked": true,
"property_3_checked": true,
"property_4_checked": true,
"property_5_checked": true,
"start_latitude_decimal": 19.0,
"start_longitude_decimal": 20.0,
"end_latitude_decimal": 21.0,
"end_longitude_decimal": 22.0,
"modified_dateutc": "2026-09-16T10:14:45.0646908+00:00",
"is_confirmed": true
}
application/xml, text/xml
<user_timesheet xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <date_from>2026-09-16T10:14:45.064Z</date_from> <date_from_rounded>2026-09-16T10:14:45.064Z</date_from_rounded> <date_to>2026-09-16T10:14:45.064Z</date_to> <date_to_rounded>2026-09-16T10:14:45.064Z</date_to_rounded> <db_table_id>80036502-06be-4555-81c4-2dfa3e7856b5</db_table_id> <end_latitude_decimal>21</end_latitude_decimal> <end_longitude_decimal>22</end_longitude_decimal> <hour_type_id>74cf43cb-8f90-49dc-9915-fef0486d351a</hour_type_id> <id>92c131c9-1c43-4387-964a-535b7749898c</id> <id_in_table>eed4b213-2e59-4b75-942c-67086d0eca70</id_in_table> <is_approved>true</is_approved> <is_confirmed>true</is_confirmed> <is_start_stop>true</is_start_stop> <is_time_for_money>true</is_time_for_money> <modified_dateutc>2026-09-16T10:14:45.064Z</modified_dateutc> <property_1_checked>true</property_1_checked> <property_2_checked>true</property_2_checked> <property_3_checked>true</property_3_checked> <property_4_checked>true</property_4_checked> <property_5_checked>true</property_5_checked> <remark>sample string 8</remark> <start_latitude_decimal>19</start_latitude_decimal> <start_longitude_decimal>20</start_longitude_decimal> <user_id>d9f76b94-41d5-429f-a375-8629eb0eb9b5</user_id> </user_timesheet>
Response Information
Resource Description :
IHttpActionResult containing the saved user timesheet.
user_timesheet| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| user_id |
Foreign key of the user this timesheet entry belongs to. |
globally unique identifier | |
| hour_type_id |
Foreign key of the hour type |
globally unique identifier |
Required |
| date_from |
Date+Time timesheet FROM |
date |
Required |
| date_from_rounded |
rounded to the nearest configured interval, used for billing/display. |
date |
Required |
| date_to |
Date+Time timesheet TO |
date |
Required |
| date_to_rounded |
rounded to the nearest configured interval, used for billing/display. |
date |
Required |
| remark |
Additional remark field |
string |
Max length: 4000 |
| is_approved |
Inform if this user_timesheet belongs to a week approved (readonly) |
boolean | |
| is_start_stop |
Indicates this entry was recorded via a start/stop timer rather than manually keyed in. |
boolean | |
| is_time_for_money |
Indicates this time is billable ("time for money") rather than purely informational. |
boolean | |
| db_table_id |
Foreign key to the table timesheet is linked. Can be a jobs,project,company or empty |
globally unique identifier | |
| id_in_table |
Foreign key of the object linked. Can be a jobs.id, project.id , company.id or empty |
globally unique identifier | |
| property_1_checked |
Checked state of the hour type's configurable custom property #1 (see ) for this entry. |
boolean | |
| property_2_checked |
Checked state of the hour type's configurable custom property #2 for this entry. |
boolean | |
| property_3_checked |
Checked state of the hour type's configurable custom property #3 for this entry. |
boolean | |
| property_4_checked |
Checked state of the hour type's configurable custom property #4 for this entry. |
boolean | |
| property_5_checked |
Checked state of the hour type's configurable custom property #5 for this entry. |
boolean | |
| start_latitude_decimal |
Latitude of the user's location when the timer was started. |
decimal number | |
| start_longitude_decimal |
Longitude of the user's location when the timer was started. |
decimal number | |
| end_latitude_decimal |
Latitude of the user's location when the timer was stopped. |
decimal number | |
| end_longitude_decimal |
Longitude of the user's location when the timer was stopped. |
decimal number | |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date | |
| is_confirmed |
offline field: is_confirmed flag |
boolean |
Response Formats
application/json, text/json
{
"id": "2cd47b96-b231-40f4-8379-41b790c87b58",
"user_id": "67f84fa1-9252-448d-b017-ef6d59ecc0ba",
"hour_type_id": "83b5d969-a967-4f69-9ad7-34d3f10a39d9",
"date_from": "2026-09-16T10:14:45.0646908+00:00",
"date_from_rounded": "2026-09-16T10:14:45.0646908+00:00",
"date_to": "2026-09-16T10:14:45.0646908+00:00",
"date_to_rounded": "2026-09-16T10:14:45.0646908+00:00",
"remark": "sample string 8",
"is_approved": true,
"is_start_stop": true,
"is_time_for_money": true,
"db_table_id": "c461ed3b-b5b4-4914-86f0-45d5923f1c48",
"id_in_table": "a9b35a74-47b2-49af-94e5-ea21d67dd1bf",
"property_1_checked": true,
"property_2_checked": true,
"property_3_checked": true,
"property_4_checked": true,
"property_5_checked": true,
"start_latitude_decimal": 19.0,
"start_longitude_decimal": 20.0,
"end_latitude_decimal": 21.0,
"end_longitude_decimal": 22.0,
"modified_dateutc": "2026-09-16T10:14:45.0646908+00:00",
"is_confirmed": true
}
application/xml, text/xml
<user_timesheet xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <date_from>2026-09-16T10:14:45.064Z</date_from> <date_from_rounded>2026-09-16T10:14:45.064Z</date_from_rounded> <date_to>2026-09-16T10:14:45.064Z</date_to> <date_to_rounded>2026-09-16T10:14:45.064Z</date_to_rounded> <db_table_id>c461ed3b-b5b4-4914-86f0-45d5923f1c48</db_table_id> <end_latitude_decimal>21</end_latitude_decimal> <end_longitude_decimal>22</end_longitude_decimal> <hour_type_id>83b5d969-a967-4f69-9ad7-34d3f10a39d9</hour_type_id> <id>2cd47b96-b231-40f4-8379-41b790c87b58</id> <id_in_table>a9b35a74-47b2-49af-94e5-ea21d67dd1bf</id_in_table> <is_approved>true</is_approved> <is_confirmed>true</is_confirmed> <is_start_stop>true</is_start_stop> <is_time_for_money>true</is_time_for_money> <modified_dateutc>2026-09-16T10:14:45.064Z</modified_dateutc> <property_1_checked>true</property_1_checked> <property_2_checked>true</property_2_checked> <property_3_checked>true</property_3_checked> <property_4_checked>true</property_4_checked> <property_5_checked>true</property_5_checked> <remark>sample string 8</remark> <start_latitude_decimal>19</start_latitude_decimal> <start_longitude_decimal>20</start_longitude_decimal> <user_id>67f84fa1-9252-448d-b017-ef6d59ecc0ba</user_id> </user_timesheet>