GET /api/stores/{storeId}/history/{fromDate}/{toDate}
GET
/api/stores/{storeId}/history/{fromDate}/{toDate}Authorizations
Parameters
Path Parameters
storeId*
Typestring
RequiredfromDate*
Typestring
RequiredtoDate*
Typestring
RequiredResponses
Samples
cURL
curl -X GET http://localhost/api/stores/{storeId}/history/{fromDate}/{toDate}
JavaScript
fetch("http://localhost/api/stores/{storeId}/history/{fromDate}/{toDate}")
.then(response => response.json())
.then(data => console.log(data));
PHP
file_get_contents("http://localhost/api/stores/{storeId}/history/{fromDate}/{toDate}");
Python
import requests
response = requests.get("http://localhost/api/stores/{storeId}/history/{fromDate}/{toDate}")
print(response.json())