GET api/AffordableCareAct?employeeId={employeeId}

Gets the specified ACA Hours information for the provided employee.

Request Information

Parameters

Name Description
employeeId

(param in the URI)

The employee identifier.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "EmployeeCode": "",
  "EmployeeId": 0,
  "NewHire": false,
  "PeriodStartDate": "2000-01-01T00:00:00",
  "PeriodEndDate": "2000-01-01T00:00:00",
  "Hours": 0.0,
  "NewHireStabilityEndDate": "2000-01-01T00:00:00",
  "StabilityEndDate": "2000-01-01T00:00:00",
  "ReviewDate": "2000-01-01T00:00:00",
  "NextReviewDate": "2000-01-01T00:00:00"
}

application/xml, text/xml

Sample:
<AffordableCareActHoursData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Netchex.API.External.Areas.AffordableCareAct.Models">
  <EmployeeCode></EmployeeCode>
  <EmployeeId>0</EmployeeId>
  <Hours>0</Hours>
  <NewHire>false</NewHire>
  <NewHireStabilityEndDate>2000-01-01T00:00:00</NewHireStabilityEndDate>
  <NextReviewDate>2000-01-01T00:00:00</NextReviewDate>
  <PeriodEndDate>2000-01-01T00:00:00</PeriodEndDate>
  <PeriodStartDate>2000-01-01T00:00:00</PeriodStartDate>
  <ReviewDate>2000-01-01T00:00:00</ReviewDate>
  <StabilityEndDate>2000-01-01T00:00:00</StabilityEndDate>
</AffordableCareActHoursData>