POST api/GetManagementOvertimeFlexiAllowance

Get a company's overtime flexi allowance

Request Information

Payload

NamePayload ParametersAdditional information
Parameters int Company
string CostCentre
DateTime RequestedDate

None.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "Exists": true,
  "StartDate": "2025-05-30T04:22:09.550516+01:00",
  "EndDate": "2025-05-30T04:22:09.550516+01:00",
  "CompanyID": 4,
  "CostCentre": "sample string 5",
  "OverTimeAllowance": "sample string 6",
  "UnSocalAllowance": "sample string 7"
}

text/html

Sample:
{"Exists":true,"StartDate":"2025-05-30T04:22:09.550516+01:00","EndDate":"2025-05-30T04:22:09.550516+01:00","CompanyID":4,"CostCentre":"sample string 5","OverTimeAllowance":"sample string 6","UnSocalAllowance":"sample string 7"}

application/xml, text/xml

Sample:
<ManagementOvertimeBudget xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Carval.SelfService.BLL.Management">
  <CompanyID>4</CompanyID>
  <CostCentre>sample string 5</CostCentre>
  <EndDate>2025-05-30T04:22:09.550516+01:00</EndDate>
  <Exists>true</Exists>
  <OverTimeAllowance>sample string 6</OverTimeAllowance>
  <StartDate>2025-05-30T04:22:09.550516+01:00</StartDate>
  <UnSocalAllowance>sample string 7</UnSocalAllowance>
</ManagementOvertimeBudget>