GET api/SystemHistory/HistoryByAction?typeId={typeId}&id={id}&actionId={actionId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| typeId | byte |
Required |
|
| id | integer |
Required |
|
| actionId | integer |
Default value is 0 |
Body Parameters
None.
Response Information
Resource Description
Collection of LogSystemListModel| Name | Description | Type | Additional information |
|---|---|---|---|
| TypeId | byte |
None. |
|
| LinkId | integer |
None. |
|
| Description | string |
None. |
|
| ActionName | string |
None. |
|
| EmployeeName | string |
None. |
|
| DateCreate | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"typeId": 64,
"linkId": 2,
"description": "sample string 3",
"actionName": "sample string 4",
"employeeName": "sample string 5",
"dateCreate": "2025-12-06T12:33:32.3583906+07:00"
},
{
"typeId": 64,
"linkId": 2,
"description": "sample string 3",
"actionName": "sample string 4",
"employeeName": "sample string 5",
"dateCreate": "2025-12-06T12:33:32.3583906+07:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfLogSystemListModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgencyWebAPI.Models.Product">
<LogSystemListModel>
<ActionName>sample string 4</ActionName>
<DateCreate>2025-12-06T12:33:32.3583906+07:00</DateCreate>
<Description>sample string 3</Description>
<EmployeeName>sample string 5</EmployeeName>
<LinkId>2</LinkId>
<TypeId>64</TypeId>
</LogSystemListModel>
<LogSystemListModel>
<ActionName>sample string 4</ActionName>
<DateCreate>2025-12-06T12:33:32.3583906+07:00</DateCreate>
<Description>sample string 3</Description>
<EmployeeName>sample string 5</EmployeeName>
<LinkId>2</LinkId>
<TypeId>64</TypeId>
</LogSystemListModel>
</ArrayOfLogSystemListModel>