GET api/v1/favoritescustomerpromotions/{customerId}?Limit={Limit}&Offset={Offset}&OrderBy={OrderBy}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| customerId | globally unique identifier |
Required |
|
| Limit | integer |
None. |
|
| Offset | integer |
None. |
|
| OrderBy | string |
None. |
Body Parameters
None.
Response Information
Resource Description
MultiResultResponseOfFavoriteCustomerPromotionDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Meta | MetaMultiResult |
None. |
|
| Notifications |
None. |
Response Formats
application/json, text/json
Sample:
{
"meta": {
"limit": 1,
"offset": 2,
"totalResults": 3
},
"notifications": [
{},
{}
],
"results": [
{
"id": "85a85534-db30-4b2b-93cd-25d26b1c8963",
"promotionCode": "sample string 1",
"customerId": "05c0113f-0011-479a-bbd1-cf0d9daa8fe0"
},
{
"id": "85a85534-db30-4b2b-93cd-25d26b1c8963",
"promotionCode": "sample string 1",
"customerId": "05c0113f-0011-479a-bbd1-cf0d9daa8fe0"
}
]
}
application/xml, text/xml
Sample:
<MultiResultResponseOfFavoriteCustomerPromotionDtoaM_S85dVU xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Presentation.WebApi.Dtos.Response">
<Meta>
<Limit>1</Limit>
<Offset>2</Offset>
<TotalResults>3</TotalResults>
</Meta>
<Notifications>
<Notification />
<Notification />
</Notifications>
<Results xmlns:d2p1="http://schemas.datacontract.org/2004/07/Domain.Dtos">
<d2p1:FavoriteCustomerPromotionDto>
<d2p1:CustomerId>05c0113f-0011-479a-bbd1-cf0d9daa8fe0</d2p1:CustomerId>
<d2p1:Id>85a85534-db30-4b2b-93cd-25d26b1c8963</d2p1:Id>
<d2p1:PromotionCode>sample string 1</d2p1:PromotionCode>
</d2p1:FavoriteCustomerPromotionDto>
<d2p1:FavoriteCustomerPromotionDto>
<d2p1:CustomerId>05c0113f-0011-479a-bbd1-cf0d9daa8fe0</d2p1:CustomerId>
<d2p1:Id>85a85534-db30-4b2b-93cd-25d26b1c8963</d2p1:Id>
<d2p1:PromotionCode>sample string 1</d2p1:PromotionCode>
</d2p1:FavoriteCustomerPromotionDto>
</Results>
</MultiResultResponseOfFavoriteCustomerPromotionDtoaM_S85dVU>