GET api/History?Sku={Sku}&Key={Key}&From={From}&To={To}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Sku | string |
None. |
|
| Key | string |
None. |
|
| From | date |
None. |
|
| To | date |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of HistoryReturnModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Sku | string |
None. |
|
| Key | string |
None. |
|
| Date | date |
None. |
|
| Count | decimal number |
None. |
|
| Batch | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Sku": "sample string 1",
"Key": "sample string 2",
"Date": "2026-06-19T11:00:38.5079947+02:00",
"Count": 4.0,
"Batch": "sample string 5"
},
{
"Sku": "sample string 1",
"Key": "sample string 2",
"Date": "2026-06-19T11:00:38.5079947+02:00",
"Count": 4.0,
"Batch": "sample string 5"
}
]
application/xml, text/xml
Sample:
<ArrayOfHistoryReturnModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Projekt.X.Api.Models">
<HistoryReturnModel>
<Batch>sample string 5</Batch>
<Count>4</Count>
<Date>2026-06-19T11:00:38.5079947+02:00</Date>
<Key>sample string 2</Key>
<Sku>sample string 1</Sku>
</HistoryReturnModel>
<HistoryReturnModel>
<Batch>sample string 5</Batch>
<Count>4</Count>
<Date>2026-06-19T11:00:38.5079947+02:00</Date>
<Key>sample string 2</Key>
<Sku>sample string 1</Sku>
</HistoryReturnModel>
</ArrayOfHistoryReturnModel>