TransactionPerStore
GET https://api.e-manage.nl/transaction/store/<storeId>
This API method can be used to retrieve a collection of transaction lines for a given store ID.
Request
The store ID has to be passed in the URL, please see the example below.
| Key | Type | Example | Notes |
|---|---|---|---|
| from | datetime | 2016-12-31 | Time is optional |
| till | datetime | 2016-12-31 | Time is optional |
| ident | string | T Reference | See the reference for valid values |
| skip | integer | 0 | |
| take | integer | 50 | Maximum 1000 |
Response
A collection of TransactionGetResponse objects.
Example
A request to retrieve the first 10 product lines for the first of July could look like:
https://api.e-manage.nl/transaction/store/123456?from=2017-07-12&till=2017-08-01&ident=K&take=10