GET api/AbsenceExt/{employeeNo}/{startDate}

Get a specific absence for an employee. The key is the StartDate

Request Information

URI Parameters

NameDescriptionTypeAdditional information
employeeNo

Employee Number

string

Required

startDate

Start Date

date

Required

Body Parameters

None.

Response Information

Resource Description

Absence

AbsenceExtDetail
NameDescriptionTypeAdditional information
StartDate

date

Required

EndDate

Must be after StartDate if present

date

None.

AbsenceType

SSP,HOL,SMP,SAP,SPPA,SPPB,SHPPA,SHPPB,SPBP

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

boolean

None.

StopPaymentDate

date

None.

AWEOverride

Average Weekly Earning Override

decimal number

Nullable

Response Formats

application/json, text/json

Sample:
{
    "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

Sample:
<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>