GET api/AffordableCareAct?employeeId={employeeId}

Gets the specified ACA Hours information for the provided employee.

Request Information

Parameters

NameDescriptionAdditional information
employeeId
The employee identifier.

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "EmployeeCode": "sample string 1",
  "EmployeeId": 2,
  "NewHire": true,
  "PeriodStartDate": "2024-04-18T01:56:04.7957473-05:00",
  "PeriodEndDate": "2024-04-18T01:56:04.7957473-05:00",
  "Hours": 6.1,
  "NewHireStabilityEndDate": "2024-04-18T01:56:04.7957473-05:00",
  "StabilityEndDate": "2024-04-18T01:56:04.7957473-05:00",
  "ReviewDate": "2024-04-18T01:56:04.7957473-05:00",
  "NextReviewDate": "2024-04-18T01:56:04.7957473-05: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>sample string 1</EmployeeCode>
  <EmployeeId>2</EmployeeId>
  <Hours>6.1</Hours>
  <NewHire>true</NewHire>
  <NewHireStabilityEndDate>2024-04-18T01:56:04.7957473-05:00</NewHireStabilityEndDate>
  <NextReviewDate>2024-04-18T01:56:04.7957473-05:00</NextReviewDate>
  <PeriodEndDate>2024-04-18T01:56:04.7957473-05:00</PeriodEndDate>
  <PeriodStartDate>2024-04-18T01:56:04.7957473-05:00</PeriodStartDate>
  <ReviewDate>2024-04-18T01:56:04.7957473-05:00</ReviewDate>
  <StabilityEndDate>2024-04-18T01:56:04.7957473-05:00</StabilityEndDate>
</AffordableCareActHoursData>