POST api/v1/couponv1/GetTotalCouponCount

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

CouponCountDto
NameDescriptionTypeAdditional information
UsedCount

integer

None.

ExpiredCount

integer

None.

NotUseCount

integer

None.

Response Formats

application/json

Sample:

Sample not available.

application/xml

Sample:
<CouponCountDto xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <UsedCount>1</UsedCount>
  <ExpiredCount>2</ExpiredCount>
  <NotUseCount>3</NotUseCount>
</CouponCountDto>

text/json

Sample:
{
  "UsedCount": 1,
  "ExpiredCount": 2,
  "NotUseCount": 3
}

text/xml

Sample:
<CouponCountDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Smart.Domain.Dto.Activity.Odd">
  <ExpiredCount>2</ExpiredCount>
  <NotUseCount>3</NotUseCount>
  <UsedCount>1</UsedCount>
</CouponCountDto>