Retrieves a user timesheet with the specified key

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult

user_timesheet
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
user_id

Foreign key of User

globally unique identifier

Required

hour_type_id

Foreign key of the hour type

globally unique identifier

Required

date_from_rounded

Date+Time timesheet FROM

date

Required

date_to_rounded

Date+Time timesheet TO

date

Required

remark

Additional remark field

string
is_approved

Inform if this user_timesheet belongs to a week approved (readonly)

boolean
db_table_id

Foreign key to the table timesheet is linked. Can be a jobs,project,company or empty

globally unique identifier
db_table_name

Value of the linked table (from db_table_id)

string
id_in_table

Foreign key of the object linked. Can be a jobs.id, project.id , company.id or empty

globally unique identifier

Optionally required : id_in_table must be provided

free_jobs_reference

In case the user didn’t select a linked object, he can fill himself a reference

string
property_1_checked

True/False status of property 1

boolean
property_2_checked

True/False status of property 2

boolean
property_3_checked

True/False status of property 3

boolean
property_4_checked

True/False status of property 4

boolean
property_5_checked

True/False status of property 5

boolean
modified_dateutc

Readonly system field managed by database, filled with GetUtcDate when adding,updating

date

Response Formats

application/json, text/json

Sample:
{
  "id": "8b1234a9-fc09-43ec-98c1-ff8ee0108fbd",
  "user_id": "3c094ed1-4a20-47a0-94eb-25897b441756",
  "hour_type_id": "6d1583f7-43f1-4e52-a5f3-377c86393c05",
  "date_from_rounded": "2025-01-18T10:52:32.3200685+00:00",
  "date_to_rounded": "2025-01-18T10:52:32.3200685+00:00",
  "remark": "sample string 6",
  "is_approved": true,
  "db_table_id": "56ca5503-4018-4c4d-8e74-23abb7593d6a",
  "db_table_name": "sample string 9",
  "id_in_table": "4ccb3c1c-7bd3-45c6-8591-964d0e5d9268",
  "free_jobs_reference": "sample string 11",
  "property_1_checked": true,
  "property_2_checked": true,
  "property_3_checked": true,
  "property_4_checked": true,
  "property_5_checked": true,
  "modified_dateutc": "2025-01-18T10:52:32.3200685+00:00"
}