POST api/Payment/Update/{employeeNo}
Update a Payment for an Employee. The key for updates is the Pay Element and the Start Date
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
employeeNo |
Employee Number |
string |
Required |
Body Parameters
In request Body: Employee Payment Details
PaymentDetailName | Description | Type | Additional information |
---|---|---|---|
RecordID | integer |
None. |
|
PayElement |
Must not be archived |
string |
Required |
StartDate | date |
Required |
|
EndDate | date |
None. |
|
AnnualAmount |
AmountAmount OR PeriodAmount is required |
decimal number |
None. |
PeriodAmount |
AmountAmount OR PeriodAmount is required |
decimal number |
None. |
Balance | decimal number |
None. |
|
RateEffectiveDate | date |
None. |
|
Applied | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{ "RecordID": 2035, "PayElement": "Basic", "StartDate": "2021-11-08T00:00:00", "EndDate": null, "AnnualAmount": 144000.0, "Balance": null, "RateEffectiveDate": null, "Applied": false }
application/xml, text/xml
Sample:
<PaymentDetail> <AnnualAmount>144000.0</AnnualAmount> <Applied>false</Applied> <Balance>null</Balance> <EndDate>null</EndDate> <PayElement>Basic</PayElement> <RateEffectiveDate>null</RateEffectiveDate> <RecordID>2035</RecordID> <StartDate>2021-11-08T00:00:00</StartDate> </PaymentDetail>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Result
ResultWithMessageName | Description | Type | Additional information |
---|---|---|---|
result |
'OK', 'Error' |
string |
None. |
message |
Returns if result is Error |
string |
None. |
returnValue | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "result": "OK" } { "result": "Error", "message": "Unable to save: the..." }
application/xml, text/xml
Sample:
<ResultWithMessage> <result>OK</result> </ResultWithMessage> <ResultWithMessage> <result>Error</result> <message>Unable to save: the...</message> </ResultWithMessage>