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": "30651765-1114-4bf5-b149-7847d6177d08",
"value": "sample string 1",
"promotionCode": "sample string 2",
"customerId": "e0e6c29f-691b-48c8-aed9-6d728ba3e2f0",
"sellerId": "d17241c1-f0af-4b5b-9f19-e9d31decfe78",
"customerFirstName": "sample string 3",
"customerLastName": "sample string 4",
"customerDni": "sample string 5",
"promotionTitle": "sample string 6",
"promotionBeginDate": "2026-02-04T06:13:24.418379+00:00",
"promotionEndDate": "2026-02-04T06:13:24.418379+00:00",
"creationDate": "2026-02-04T06:13:24.418379+00:00",
"serviceDate": "2026-02-04T06:13:24.418379+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-02-04T06:13:24.418379+00:00</CreationDate> <CustomerDni>sample string 5</CustomerDni> <CustomerFirstName>sample string 3</CustomerFirstName> <CustomerId>e0e6c29f-691b-48c8-aed9-6d728ba3e2f0</CustomerId> <CustomerLastName>sample string 4</CustomerLastName> <Id>30651765-1114-4bf5-b149-7847d6177d08</Id> <PromotionBeginDate>2026-02-04T06:13:24.418379+00:00</PromotionBeginDate> <PromotionCode>sample string 2</PromotionCode> <PromotionEndDate>2026-02-04T06:13:24.418379+00:00</PromotionEndDate> <PromotionTitle>sample string 6</PromotionTitle> <SellerId>d17241c1-f0af-4b5b-9f19-e9d31decfe78</SellerId> <ServiceDate>2026-02-04T06:13:24.418379+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.