GET api/HistoryEvent?id_id={id_id}&sort={sort}&search={search}&skip={skip}&take={take}
Returns the list of Historys with filter applied.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id_id | integer |
None. |
|
| sort |
Possible sorting - "date" |
string |
None. |
| search |
Possible search - "seria", "number". |
string |
None. |
| skip |
Sets the SKIP number of records returned |
integer |
None. |
| take |
Sets the TAKE number records returned |
integer |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of ApiHistoryEventOutput| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| name | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"name": "sample string 2"
},
{
"id": 1,
"name": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfApiHistoryEventOutput xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ApiHistoryEventOutput>
<id>1</id>
<name>sample string 2</name>
</ApiHistoryEventOutput>
<ApiHistoryEventOutput>
<id>1</id>
<name>sample string 2</name>
</ApiHistoryEventOutput>
</ArrayOfApiHistoryEventOutput>