POST api/timePayrollBatch/process

Request Information

URI Parameters

None.

Body Parameters

timePayrollParm
NameDescriptionTypeAdditional information
StartDate

date

None.

EndDate

date

None.

CountryCode

string

None.

EmployeeTypeGroup

string

None.

PayrollTypeGroup

string

None.

ValidateOnly

boolean

None.

EmployeeIDList

Collection of integer

None.

Request Formats

application/json, text/json

Sample:
{
  "StartDate": "2025-12-06T23:36:55.4987804+00:00",
  "EndDate": "2025-12-06T23:36:55.4987804+00:00",
  "CountryCode": "sample string 3",
  "EmployeeTypeGroup": "sample string 4",
  "PayrollTypeGroup": "sample string 5",
  "ValidateOnly": true,
  "EmployeeIDList": [
    1,
    2
  ]
}

application/xml, text/xml

Sample:
<timePayrollParm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Data.Tables">
  <CountryCode>sample string 3</CountryCode>
  <EmployeeIDList xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </EmployeeIDList>
  <EmployeeTypeGroup>sample string 4</EmployeeTypeGroup>
  <EndDate>2025-12-06T23:36:55.4987804+00:00</EndDate>
  <PayrollTypeGroup>sample string 5</PayrollTypeGroup>
  <StartDate>2025-12-06T23:36:55.4987804+00:00</StartDate>
  <ValidateOnly>true</ValidateOnly>
</timePayrollParm>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'timePayrollParm'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.