GET api/AffordableCareAct?employeeId={employeeId}
Gets the specified ACA Hours information for the provided employee.
Request Information
Parameters
Name | Description | Additional 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": "2025-01-21T03:07:36.6645374-06:00", "PeriodEndDate": "2025-01-21T03:07:36.6645374-06:00", "Hours": 6.1, "NewHireStabilityEndDate": "2025-01-21T03:07:36.6645374-06:00", "StabilityEndDate": "2025-01-21T03:07:36.6645374-06:00", "ReviewDate": "2025-01-21T03:07:36.6645374-06:00", "NextReviewDate": "2025-01-21T03:07:36.6645374-06: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>2025-01-21T03:07:36.6645374-06:00</NewHireStabilityEndDate> <NextReviewDate>2025-01-21T03:07:36.6645374-06:00</NextReviewDate> <PeriodEndDate>2025-01-21T03:07:36.6645374-06:00</PeriodEndDate> <PeriodStartDate>2025-01-21T03:07:36.6645374-06:00</PeriodStartDate> <ReviewDate>2025-01-21T03:07:36.6645374-06:00</ReviewDate> <StabilityEndDate>2025-01-21T03:07:36.6645374-06:00</StabilityEndDate> </AffordableCareActHoursData>