GET api/Adjustment/{employeeNo}/{externalId}
Get a specific adjustment for an employee.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
employeeNo |
ExternalId |
string |
Required |
externalId |
ExternalId |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Adjustment Details
AdjustmentDetailName | Description | Type | Additional information |
---|---|---|---|
PayElement | string |
Required |
|
Period |
OPTIONAL - The period the payment will be made in (defaults to the current period) |
string |
None. |
Date |
OPTIONAL - The date the payment will be made |
date |
None. |
Amount |
Amount OR Rate is required |
decimal number |
None. |
Rate |
Amount OR Rate is required |
decimal number |
None. |
Units | decimal number |
None. |
|
ExternalId | string |
Required |
|
RateName | string |
None. |
|
Department | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "PayElement": "sample string 1", "Period": "sample string 2", "Date": "2024-12-23T06:51:55.2480885+00:00", "Amount": 1.0, "Rate": 1.0, "Units": 1.0, "ExternalId": "sample string 3", "RateName": "sample string 4", "Department": "sample string 5" }
application/xml, text/xml
Sample:
<AdjustmentDetail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebServicesRESTful.Models"> <Amount>1</Amount> <Date>2024-12-23T06:51:55.2480885+00:00</Date> <Department>sample string 5</Department> <ExternalId>sample string 3</ExternalId> <PayElement>sample string 1</PayElement> <Period>sample string 2</Period> <Rate>1</Rate> <RateName>sample string 4</RateName> <Units>1</Units> </AdjustmentDetail>