POST api/FrontierWeb/Timesheet/SaveEmployeeBreakSchedule

Request Information

URI Parameters

None.

Body Parameters

SaveEmployeeBreakScheduleRequest
NameDescriptionTypeAdditional information
IdNo

integer

None.

EmployeeIdNo

integer

None.

PayDate

date

None.

BreakTimeHours

decimal number

None.

BreakThresholdHours

decimal number

None.

Request Formats

application/json, text/json

Sample:
{
  "IdNo": 1,
  "EmployeeIdNo": 1,
  "PayDate": "2025-06-18T09:09:23.3028731-05:00",
  "BreakTimeHours": 3.0,
  "BreakThresholdHours": 4.0
}

text/html

Sample:
{"IdNo":1,"EmployeeIdNo":1,"PayDate":"2025-06-18T09:09:23.3028731-05:00","BreakTimeHours":3.0,"BreakThresholdHours":4.0}

Response Information

Resource Description

GenericTransactionResponse
NameDescriptionTypeAdditional information
ReturnedObject

Object

None.

IsSuccessful

Indicates if the transaction was successful or not.

boolean

None.

ReturnedMessages

Contains a list of Informational, Warning, and/or Error messages regarding the outcome of the transaction.

Collection of ReturnedMessage

None.

Response Formats

application/json, text/json

Sample:
{
  "ReturnedObject": {},
  "IsSuccessful": true,
  "ReturnedMessages": null
}

text/html

Sample:
{"ReturnedObject":{},"IsSuccessful":true,"ReturnedMessages":null}