GET api/accrual_history/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
accrual_history1| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| accrual_code | string |
None. |
|
| employee_position_id | string |
None. |
|
| accrual_hours | decimal number |
None. |
|
| accrual_date | date |
None. |
|
| created_date | date |
None. |
|
| updated_date | date |
None. |
|
| enterted_by | string |
None. |
|
| comments | string |
None. |
|
| batch_id | integer |
None. |
|
| type | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"id": 1,
"accrual_code": "sample string 2",
"employee_position_id": "sample string 3",
"accrual_hours": 4.1,
"accrual_date": "2025-12-12T03:43:01.0857172-06:00",
"created_date": "2025-12-12T03:43:01.0857172-06:00",
"updated_date": "2025-12-12T03:43:01.0857172-06:00",
"enterted_by": "sample string 8",
"comments": "sample string 9",
"batch_id": 10,
"type": "sample string 11"
}
application/xml, text/xml
Sample:
<accrual_history1 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EvokeAPI"> <accrual_code>sample string 2</accrual_code> <accrual_date>2025-12-12T03:43:01.0857172-06:00</accrual_date> <accrual_hours>4.1</accrual_hours> <batch_id>10</batch_id> <comments>sample string 9</comments> <created_date>2025-12-12T03:43:01.0857172-06:00</created_date> <employee_position_id>sample string 3</employee_position_id> <enterted_by>sample string 8</enterted_by> <id>1</id> <type>sample string 11</type> <updated_date>2025-12-12T03:43:01.0857172-06:00</updated_date> </accrual_history1>