GET V3/odata/FavoriteTimesheetEntry({key})
Gets FavoriteTimesheetEntry entity by key
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
key |
FavoriteTimesheetEntryId from FavoriteTimesheetEntry entity |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
QicsUnity.Api.Areas.V3.Models.FavoriteTimesheetEntryName | Description | Type | Additional information |
---|---|---|---|
FavoriteTimesheetEntryId |
Gets or sets the FavoriteTimesheetEntryId |
integer |
Required 64-bit signed integer |
ProjectId |
Gets or sets the ProjectId |
integer |
Required 64-bit signed integer |
EmployeeId |
Gets or sets the EmployeeId |
integer |
Required 64-bit signed integer |
CustomerCompanyId |
Gets or sets the CustomerCompanyId |
integer |
64-bit signed integer Nullable |
BudgetId |
Gets or sets the BudgetId |
integer |
64-bit signed integer Nullable |
ItemCompanyId |
Gets or sets the ItemCompanyId |
integer |
64-bit signed integer Nullable |
ProjectContractId |
Gets or sets the ProjectContractId |
integer |
64-bit signed integer Nullable |
TimesheetEntryType |
Gets or sets TimesheetEntryType |
QicsUnity.Common.BusinessObjects.TimesheetEntryType | |
Description |
Gets or sets Description |
string |
Response Formats
application/json, text/json
Sample:
{ "FavoriteTimesheetEntryId": "1", "ProjectId": "2", "EmployeeId": "3", "CustomerCompanyId": "1", "BudgetId": "1", "ItemCompanyId": "1", "ProjectContractId": "1", "TimesheetEntryType": "Hour", "Description": "sample 4" }
application/xml, text/xml
Sample:
<FavoriteTimesheetEntry xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QicsUnity.Api.Areas.V3.Models"> <BudgetId>1</BudgetId> <CustomerCompanyId>1</CustomerCompanyId> <Description>sample 4</Description> <EmployeeId>3</EmployeeId> <FavoriteTimesheetEntryId>1</FavoriteTimesheetEntryId> <ItemCompanyId>1</ItemCompanyId> <ProjectContractId>1</ProjectContractId> <ProjectId>2</ProjectId> <TimesheetEntryType>Hour</TimesheetEntryType> </FavoriteTimesheetEntry>