GET api/PayFrequency

Gets a list of pay frequencies.

Request Information

URI Parameters

(i.e.queryString parameters in the form ?param1={param1}&param2={param2})

None.

Body Parameters

None.

Response Information

Resource Description

The list of pay frequencies.

PayFrequencyView
NameDescriptionTypeAdditional information
Code

The code of the pay frequency

string

None.

Description

The description of the pay frequency

string

None.

Frequency

The type of the pay frequency

string

None.

Current
 PeriodEnd

The date of current the period end

date

None.

Response Formats

application/json, text/json

Sample:
{
  "code": "sample string 1",
  "description": "sample string 2",
  "frequency": "sample string 3",
  "currentPeriodEnd": "2024-05-19T12:56:36.4535947+10:00"
}

application/xml, text/xml

Sample:
<PayFrequencyView xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Code>sample string 1</Code>
  <Description>sample string 2</Description>
  <Frequency>sample string 3</Frequency>
  <CurrentPeriodEnd>2024-05-19T12:56:36.4535947+10:00</CurrentPeriodEnd>
</PayFrequencyView>