GET api/timesheet/timeentrydefaults/{memberId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
memberId

string

Required

Body Parameters

None.

Response Information

Resource Description

TimeEntryDefualtValues
NameDescriptionTypeAdditional information
MinHoursChargedIncrement

decimal number

None.

MinHoursCharged

decimal number

None.

StartFromLowRange

boolean

None.

AllowTimeEntryOver24H

boolean

None.

ShortDateFormat

string

None.

LongDateFormat

string

None.

AcuminOnTheGoTimerAutoStart

integer

None.

IfTheTimeEntryElementIsOverridden

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "MinHoursChargedIncrement": 1.1,
  "MinHoursCharged": 2.1,
  "StartFromLowRange": true,
  "AllowTimeEntryOver24H": true,
  "ShortDateFormat": "sample string 5",
  "LongDateFormat": "sample string 6",
  "AcuminOnTheGoTimerAutoStart": 7,
  "IfTheTimeEntryElementIsOverridden": true
}

application/xml, text/xml

Sample:
<TimeEntryDefualtValues xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Dexco.Web.Domain">
  <AcuminOnTheGoTimerAutoStart>7</AcuminOnTheGoTimerAutoStart>
  <AllowTimeEntryOver24H>true</AllowTimeEntryOver24H>
  <IfTheTimeEntryElementIsOverridden>true</IfTheTimeEntryElementIsOverridden>
  <LongDateFormat>sample string 6</LongDateFormat>
  <MinHoursCharged>2.1</MinHoursCharged>
  <MinHoursChargedIncrement>1.1</MinHoursChargedIncrement>
  <ShortDateFormat>sample string 5</ShortDateFormat>
  <StartFromLowRange>true</StartFromLowRange>
</TimeEntryDefualtValues>