GET api/PayFrequency
Gets a list of pay frequencies.
Request Information
URI Parameters
(i.e.queryString parameters in the form ?param1={param1}¶m2={param2})
None.
Body Parameters
None.
Response Information
Resource Description
The list of pay frequencies.
PayFrequencyViewName | Description | Type | Additional 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-11-22T00:10:45.1936264+11: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-11-22T00:10:45.1936264+11:00</CurrentPeriodEnd> </PayFrequencyView>