GET api/PayClasses/{payClassCode}
Request Information
URI Parameters
(i.e.queryString parameters in the form ?param1={param1}¶m2={param2})
| Name | Description | Type | Additional information |
|---|---|---|---|
| payClassCode | string |
Required |
|
| page | integer |
Default value is 1 |
|
| pageSize | integer |
Default value is 1000 |
Body Parameters
None.
Response Information
Resource Description
PayClassView| Name | Description | Type | Additional information |
|---|---|---|---|
| idPayClass |
Gets or sets the unique identifier for the pay class. |
integer |
None. |
| code |
Gets or sets the code for the pay class. |
string |
None. |
| description |
Gets or sets the description of the pay class. |
string |
None. |
| CostAccount |
Gets or sets the cost account associated with the pay class. |
integer |
None. |
| YearlySalary |
Gets or sets the yearly salary for the pay class. |
decimal number |
None. |
| AutopayAmount |
Gets or sets the autopay amount for the pay class. |
decimal number |
None. |
| NormalRate |
Gets or sets the normal pay rate. |
decimal number |
None. |
| TimeHalfRate |
Gets or sets the time-and-a-half pay rate. |
decimal number |
None. |
| DoubleRate |
Gets or sets the double pay rate. |
decimal number |
None. |
| OtherRate |
Gets or sets the other pay rate. |
decimal number |
None. |
| AwardRate |
Gets or sets the award pay rate. |
decimal number |
None. |
| AwardHoursPaid |
Gets or sets the number of award hours paid. |
decimal number |
None. |
| TimeHalfFactor |
Gets or sets the factor used for time-and-a-half calculations. |
integer |
None. |
| DoubleFactor |
Gets or sets the factor used for double pay calculations. |
integer |
None. |
Response Formats
application/json, text/json
{
"idPayClass": 1,
"code": "sample string 2",
"description": "sample string 3",
"costAccount": 4,
"yearlySalary": 5.0,
"autopayAmount": 6.0,
"normalRate": 7.0,
"timeHalfRate": 8.0,
"doubleRate": 9.0,
"otherRate": 10.0,
"awardRate": 11.0,
"awardHoursPaid": 12.0,
"timeHalfFactor": 13,
"doubleFactor": 14
}
application/xml, text/xml
<PayClassView xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <idPayClass>1</idPayClass> <code>sample string 2</code> <description>sample string 3</description> <CostAccount>4</CostAccount> <YearlySalary>5</YearlySalary> <AutopayAmount>6</AutopayAmount> <NormalRate>7</NormalRate> <TimeHalfRate>8</TimeHalfRate> <DoubleRate>9</DoubleRate> <OtherRate>10</OtherRate> <AwardRate>11</AwardRate> <AwardHoursPaid>12</AwardHoursPaid> <TimeHalfFactor>13</TimeHalfFactor> <DoubleFactor>14</DoubleFactor> </PayClassView>