POST api/v1/usedcouponcodes/use
Request Information
URI Parameters
None.
Body Parameters
UsedCouponCodeDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Value | string |
None. |
|
| PromotionCode | string |
None. |
|
| CustomerId | globally unique identifier |
None. |
|
| SellerId | globally unique identifier |
None. |
|
| CustomerFirstName | string |
None. |
|
| CustomerLastName | string |
None. |
|
| CustomerDni | string |
None. |
|
| PromotionTitle | string |
None. |
|
| PromotionBeginDate | date |
None. |
|
| PromotionEndDate | date |
None. |
|
| CreationDate | date |
None. |
|
| ServiceDate | date |
None. |
|
| Comments | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": "3e65e90d-1ddd-4179-aff4-c062648ec1cd",
"value": "sample string 1",
"promotionCode": "sample string 2",
"customerId": "4b201fc1-ecb1-4e3c-ab02-c9e6bbe4b3a9",
"sellerId": "dfb849e6-ed00-4168-987b-cff528ba8d61",
"customerFirstName": "sample string 3",
"customerLastName": "sample string 4",
"customerDni": "sample string 5",
"promotionTitle": "sample string 6",
"promotionBeginDate": "2026-05-06T12:08:27.5418633+00:00",
"promotionEndDate": "2026-05-06T12:08:27.5418633+00:00",
"creationDate": "2026-05-06T12:08:27.5418633+00:00",
"serviceDate": "2026-05-06T12:08:27.5418633+00:00",
"comments": "sample string 8"
}
application/xml, text/xml
Sample:
<UsedCouponCodeDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Domain.Dtos"> <Comments>sample string 8</Comments> <CreationDate>2026-05-06T12:08:27.5418633+00:00</CreationDate> <CustomerDni>sample string 5</CustomerDni> <CustomerFirstName>sample string 3</CustomerFirstName> <CustomerId>4b201fc1-ecb1-4e3c-ab02-c9e6bbe4b3a9</CustomerId> <CustomerLastName>sample string 4</CustomerLastName> <Id>3e65e90d-1ddd-4179-aff4-c062648ec1cd</Id> <PromotionBeginDate>2026-05-06T12:08:27.5418633+00:00</PromotionBeginDate> <PromotionCode>sample string 2</PromotionCode> <PromotionEndDate>2026-05-06T12:08:27.5418633+00:00</PromotionEndDate> <PromotionTitle>sample string 6</PromotionTitle> <SellerId>dfb849e6-ed00-4168-987b-cff528ba8d61</SellerId> <ServiceDate>2026-05-06T12:08:27.5418633+00:00</ServiceDate> <Value>sample string 1</Value> </UsedCouponCodeDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.