| Name
|
Data Type | Description |
| pgsiz
|
int |
max records to return per response; use "next" or "prev" link to paginate
|
| pgnum
|
int |
considering pgsiz, returns the pgnum-th page, 1-indexed
|
| lastrequestedwmseventid
|
Int64 |
the highest (numerically) wms event id of the last previously requested list of WMSEvent records |
| reversesort
|
bool |
default false; if true, records will return ordered by wms event id deescending and pgsiz will be set to 1. This is for determining the maximum wms event id. |
|
Type |
Description |
| TotalResults |
int
|
|
| ResourceList |
IList<WmsTool.Models.WMSEvent>
|
|
| WMSEventId |
Int64
|
|
| Datetime |
DateTime
|
|
| EventType |
string
|
|
| TransactionId |
int?
|
|
| CustomerId |
int?
|
|
| ResourceLink |
Generic.Models.WMSLink
|
|
| Href |
string
|
|
| Rel |
string
|
|
| OtherLinks |
IEnumerable<Generic.Models.WMSLinkBase>
|
|
| Rel |
string
|
|
| Data |
string
|
|
| Tags |
string
|
|
| Links |
IList<WebApi.Hal.Link>
|
|
|
-
next |
|
|
-
prev |
|
Sample accept: application/hal+json
{
"totalResults": 1,
"_embedded": {
"http://api.3plCentral.com/rels/wmstools/wmsevent": [
{
"wmsEventId": 1,
"datetime": "2016-12-25T23:00:00",
"eventType": "str",
"transactionId": 1,
"customerId": 1,
"resourceLink": {
"href": "str",
"rel": "str"
},
"otherLinks": [
{
"rel": "str"
}
],
"data": "str",
"tags": "str"
}
]
}
}