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": "2024-11-21T00:47:46.9986213-06:00", "PeriodEndDate": "2024-11-21T00:47:46.9986213-06:00", "Hours": 6.1, "NewHireStabilityEndDate": "2024-11-21T00:47:46.9986213-06:00", "StabilityEndDate": "2024-11-21T00:47:46.9986213-06:00", "ReviewDate": "2024-11-21T00:47:46.9986213-06:00", "NextReviewDate": "2024-11-21T00:47:46.9986213-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>2024-11-21T00:47:46.9986213-06:00</NewHireStabilityEndDate> <NextReviewDate>2024-11-21T00:47:46.9986213-06:00</NextReviewDate> <PeriodEndDate>2024-11-21T00:47:46.9986213-06:00</PeriodEndDate> <PeriodStartDate>2024-11-21T00:47:46.9986213-06:00</PeriodStartDate> <ReviewDate>2024-11-21T00:47:46.9986213-06:00</ReviewDate> <StabilityEndDate>2024-11-21T00:47:46.9986213-06:00</StabilityEndDate> </AffordableCareActHoursData>