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": "acd1cc62-3a59-448d-af81-691c56026206",
"value": "sample string 1",
"promotionCode": "sample string 2",
"customerId": "bb58a0a5-a8ab-44e2-85f0-27de3c7e53ca",
"sellerId": "ac4641b3-3e1b-4b45-b374-205a60a46826",
"customerFirstName": "sample string 3",
"customerLastName": "sample string 4",
"customerDni": "sample string 5",
"promotionTitle": "sample string 6",
"promotionBeginDate": "2026-03-21T21:45:07.1856588+00:00",
"promotionEndDate": "2026-03-21T21:45:07.1856588+00:00",
"creationDate": "2026-03-21T21:45:07.1856588+00:00",
"serviceDate": "2026-03-21T21:45:07.1856588+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-03-21T21:45:07.1856588+00:00</CreationDate> <CustomerDni>sample string 5</CustomerDni> <CustomerFirstName>sample string 3</CustomerFirstName> <CustomerId>bb58a0a5-a8ab-44e2-85f0-27de3c7e53ca</CustomerId> <CustomerLastName>sample string 4</CustomerLastName> <Id>acd1cc62-3a59-448d-af81-691c56026206</Id> <PromotionBeginDate>2026-03-21T21:45:07.1856588+00:00</PromotionBeginDate> <PromotionCode>sample string 2</PromotionCode> <PromotionEndDate>2026-03-21T21:45:07.1856588+00:00</PromotionEndDate> <PromotionTitle>sample string 6</PromotionTitle> <SellerId>ac4641b3-3e1b-4b45-b374-205a60a46826</SellerId> <ServiceDate>2026-03-21T21:45:07.1856588+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.