POST api/FrontierWeb/Timesheet/AddEmployeeDirectPay

Request Information

URI Parameters

None.

Body Parameters

AddEmployeeDirectPayRequest
NameDescriptionTypeAdditional information
PayDates

Collection of date

None.

EmployeeIdNo

integer

None.

DepartmentCode

string

None.

GeoLocationIdNo

integer

None.

PayrollAccountCode

string

None.

PaidHours

decimal number

None.

Request Formats

application/json, text/json

Sample:
{
  "PayDates": [
    "2025-06-18T08:47:55.0549766-05:00",
    "2025-06-18T08:47:55.0549766-05:00"
  ],
  "EmployeeIdNo": 1,
  "DepartmentCode": "sample string 2",
  "GeoLocationIdNo": 3,
  "PayrollAccountCode": "sample string 4",
  "PaidHours": 5.0
}

text/html

Sample:
{"PayDates":["2025-06-18T08:47:55.0549766-05:00","2025-06-18T08:47:55.0549766-05:00"],"EmployeeIdNo":1,"DepartmentCode":"sample string 2","GeoLocationIdNo":3,"PayrollAccountCode":"sample string 4","PaidHours":5.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}