PUT api/AbsenceExt/{employeeNo}
Add an Absence to an Employee
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
employeeNo |
Employee Number |
string |
Required |
Body Parameters
In request Body: Employee Absence Details
AbsenceExtDetailName | Description | Type | Additional information |
---|---|---|---|
StartDate |
Start date of the absence. |
date |
Required |
EndDate |
Must be after StartDate if present. |
date |
None. |
AbsenceType |
SSP,HOL,SMP,SAP,SPPA,SPPB,SHPPA,SHPPB,SPBP,SNCP. |
string |
None. |
DueDate |
Used with SMP, SPPB, SHPPB |
date |
None. |
BirthDate |
Used with SMP, SPPB, SHPPB |
date |
None. |
Stillborn |
Used with SMP, SPPB, SHPPB, SPBP |
boolean |
Nullable |
MatchDate |
Used with SAP, SPPA, SHPPA |
date |
None. |
PlacedDate |
Used with SAP, SPPA, SHPPA |
date |
None. |
DeathDate |
Used with SPBP |
date |
None. |
StopPayment |
Indicates that you want payments to stop for this absence. |
boolean |
None. |
StopPaymentDate |
The date you want payments to stop for this absence if this is earlier than the End Date. |
date |
None. |
AWEOverride |
Average Weekly Earning Override |
decimal number |
Nullable |
BabyBornOrMatchedDate |
Used with SNCP |
date |
None. |
SNCPStartDate |
Used with SNCP |
date |
None. |
SNCPEndDate |
Used with SNCP |
date |
None. |
Eligible |
Used with SMP, SPPA, SPPB |
string |
None. |
NonEligibleReason |
Used with SMP, SPPA, SPPB |
string |
None. |
Request Formats
application/json, text/json
{ "StartDate": "2022-02-08T00:00:00", "EndDate": "2022-02-09T00:00:00", "AbsenceType": "SSP", "DueDate": null, "BirthDate": null, "Stillborn": null, "MatchDate": null, "PlacedDate": null, "DeathDate": null, "StopPayment": false, "StopPaymentDate": "2022-02-08T00:00:00", "AWEOverride": 5.0 }
application/xml, text/xml
<AbsenceExtDetail> <AWEOverride>5.0</AWEOverride> <AbsenceType>SSP</AbsenceType> <BirthDate>null</BirthDate> <DeathDate>null</DeathDate> <DueDate>null</DueDate> <EndDate>2022-02-09T00:00:00</EndDate> <MatchDate>null</MatchDate> <PlacedDate>null</PlacedDate> <StartDate>2022-02-08T00:00:00</StartDate> <Stillborn>null</Stillborn> <StopPayment>true</StopPayment> <StopPaymentDate>2022-02-08T00:00:00</StopPaymentDate> </AbsenceExtDetail>
application/x-www-form-urlencoded
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
{ "result": "OK" } { "result": "Error", "message": "Unable to save: the..." }
application/xml, text/xml
<ResultWithMessage> <result>OK</result> </ResultWithMessage> <ResultWithMessage> <result>Error</result> <message>Unable to save: the...</message> </ResultWithMessage>