GET api/search/log/from/{fromdate}/to/{todate}
V1 - Returns a list of search resultlogs for the specified period. Only results for the current vendor will be retrieved.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| fromdate |
The start date (inclusive) |
date |
Required |
| todate |
The end date (inclusive) |
date |
Required |
Body Parameters
None.
Response Information
Resource Description
IEnumerable collection YindoBooks
Collection of SearchLog| Name | Description | Type | Additional information |
|---|---|---|---|
| ID |
The ID for this specific searchlog. |
integer |
None. |
| TypeID |
The ID for the searchtype. |
integer |
None. |
| TypeName |
The name for the searchtype. |
string |
None. |
| UserIP |
The remote IP addres. |
string |
None. |
| UserID |
The UserID for the remote user. |
globally unique identifier |
None. |
| Keywords |
The keywords used in this search. |
string |
None. |
| ResultCount |
The number of results found. |
integer |
None. |
| ResultEANs |
The specific EANs found. |
string |
None. |
| SearchDate |
The date and time this search was executed. |
date |
None. |
Response Formats
application/json, text/json
[
{
"ID": 1,
"TypeID": 2,
"TypeName": "sample string 3",
"UserIP": "sample string 4",
"UserID": "fb4cf593-2140-4880-8d70-39864b6b4056",
"Keywords": "sample string 6",
"ResultCount": 7,
"ResultEANs": "sample string 8",
"SearchDate": "2026-02-20T15:54:37.9246615+01:00"
},
{
"ID": 1,
"TypeID": 2,
"TypeName": "sample string 3",
"UserIP": "sample string 4",
"UserID": "fb4cf593-2140-4880-8d70-39864b6b4056",
"Keywords": "sample string 6",
"ResultCount": 7,
"ResultEANs": "sample string 8",
"SearchDate": "2026-02-20T15:54:37.9246615+01:00"
}
]
text/javascript
[{"ID":1,"TypeID":2,"TypeName":"sample string 3","UserIP":"sample string 4","UserID":"fb4cf593-2140-4880-8d70-39864b6b4056","Keywords":"sample string 6","ResultCount":7,"ResultEANs":"sample string 8","SearchDate":"2026-02-20T15:54:37.9246615+01:00"},{"ID":1,"TypeID":2,"TypeName":"sample string 3","UserIP":"sample string 4","UserID":"fb4cf593-2140-4880-8d70-39864b6b4056","Keywords":"sample string 6","ResultCount":7,"ResultEANs":"sample string 8","SearchDate":"2026-02-20T15:54:37.9246615+01:00"}]
application/xml, text/xml
<ArrayOfSearchLog xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VersionedVendorApi.Models">
<SearchLog>
<ID>1</ID>
<Keywords>sample string 6</Keywords>
<ResultCount>7</ResultCount>
<ResultEANs>sample string 8</ResultEANs>
<SearchDate>2026-02-20T15:54:37.9246615+01:00</SearchDate>
<TypeID>2</TypeID>
<TypeName>sample string 3</TypeName>
<UserID>fb4cf593-2140-4880-8d70-39864b6b4056</UserID>
<UserIP>sample string 4</UserIP>
</SearchLog>
<SearchLog>
<ID>1</ID>
<Keywords>sample string 6</Keywords>
<ResultCount>7</ResultCount>
<ResultEANs>sample string 8</ResultEANs>
<SearchDate>2026-02-20T15:54:37.9246615+01:00</SearchDate>
<TypeID>2</TypeID>
<TypeName>sample string 3</TypeName>
<UserID>fb4cf593-2140-4880-8d70-39864b6b4056</UserID>
<UserIP>sample string 4</UserIP>
</SearchLog>
</ArrayOfSearchLog>