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": "d3a641a1-36b7-49ae-a69b-5f91d3e2004a",
"value": "sample string 1",
"promotionCode": "sample string 2",
"customerId": "8945581a-65d3-4d44-8773-a8b57244c2e0",
"sellerId": "a561d101-963f-4376-ab4b-7e46c584b5fd",
"customerFirstName": "sample string 3",
"customerLastName": "sample string 4",
"customerDni": "sample string 5",
"promotionTitle": "sample string 6",
"promotionBeginDate": "2026-08-04T23:31:12.4160051+00:00",
"promotionEndDate": "2026-08-04T23:31:12.4160051+00:00",
"creationDate": "2026-08-04T23:31:12.4160051+00:00",
"serviceDate": "2026-08-04T23:31:12.4160051+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-08-04T23:31:12.4160051+00:00</CreationDate> <CustomerDni>sample string 5</CustomerDni> <CustomerFirstName>sample string 3</CustomerFirstName> <CustomerId>8945581a-65d3-4d44-8773-a8b57244c2e0</CustomerId> <CustomerLastName>sample string 4</CustomerLastName> <Id>d3a641a1-36b7-49ae-a69b-5f91d3e2004a</Id> <PromotionBeginDate>2026-08-04T23:31:12.4160051+00:00</PromotionBeginDate> <PromotionCode>sample string 2</PromotionCode> <PromotionEndDate>2026-08-04T23:31:12.4160051+00:00</PromotionEndDate> <PromotionTitle>sample string 6</PromotionTitle> <SellerId>a561d101-963f-4376-ab4b-7e46c584b5fd</SellerId> <ServiceDate>2026-08-04T23:31:12.4160051+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.