GET api/LoyaltyTransactions/GetTransactions/{LoyaltyCardNumber}/{skip}/{pageSize}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| LoyaltyCardNumber | string |
Required |
|
| skip | integer |
Required |
|
| pageSize | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
LoyaltyTransactions| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Date | string |
None. |
|
| OrderNumber | integer |
None. |
|
| StoreName | string |
None. |
|
| DisplayText | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "86a8d3a9-0ec5-4583-897f-2dff98f88a92",
"Date": "sample string 2",
"OrderNumber": 3,
"StoreName": "sample string 4",
"DisplayText": "sample string 5"
}
application/xml, text/xml
Sample:
<LoyaltyTransactions xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LoyaltyApi.Controllers"> <Date>sample string 2</Date> <DisplayText>sample string 5</DisplayText> <Id>86a8d3a9-0ec5-4583-897f-2dff98f88a92</Id> <OrderNumber>3</OrderNumber> <StoreName>sample string 4</StoreName> </LoyaltyTransactions>