POST api/v1/favoritescustomerpromotions

Request Information

URI Parameters

None.

Body Parameters

FavoriteCustomerPromotionDto
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

PromotionCode

string

None.

CustomerId

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "id": "530f2dd0-2c5f-4941-836c-e2fd76737ecc",
  "promotionCode": "sample string 1",
  "customerId": "eeb61279-8e91-42d7-a33d-c6f94006ad19"
}

application/xml, text/xml

Sample:
<FavoriteCustomerPromotionDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Domain.Dtos">
  <CustomerId>eeb61279-8e91-42d7-a33d-c6f94006ad19</CustomerId>
  <Id>530f2dd0-2c5f-4941-836c-e2fd76737ecc</Id>
  <PromotionCode>sample string 1</PromotionCode>
</FavoriteCustomerPromotionDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.