GET api/v1/get-coupon-details?couponCode={couponCode}&clientId={clientId}&custGUID={custGUID}

Request Information

URI Parameters
NameDescriptionTypeAdditional information
couponCode

string

Required

clientId

integer

Required

custGUID

globally unique identifier

None.

Response Information

Description:

Return type: CouponDetails

Response Formats
{
  "DiscountManagerId": 1,
  "DiscountTypeId": 2,
  "DiscountValue": 3.0,
  "ExpireOn": "2025-06-18T12:29:17.0520614+00:00",
  "DiscountMessage": "sample string 4",
  "OrderAmount": 1.0,
  "CouponCode": "sample string 5",
  "IsActive": true,
  "IsLogicalDeleted": true,
  "IsAlreadyAvailed": true,
  "MaxOrderAmount": 8.0,
  "excludeSaleItems": true
}
{"DiscountManagerId":1,"DiscountTypeId":2,"DiscountValue":3.0,"ExpireOn":"2025-06-18T12:29:17.0520614+00:00","DiscountMessage":"sample string 4","OrderAmount":1.0,"CouponCode":"sample string 5","IsActive":true,"IsLogicalDeleted":true,"IsAlreadyAvailed":true,"MaxOrderAmount":8.0,"excludeSaleItems":true}
<CouponDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Cart">
  <CouponCode>sample string 5</CouponCode>
  <DiscountManagerId>1</DiscountManagerId>
  <DiscountMessage>sample string 4</DiscountMessage>
  <DiscountTypeId>2</DiscountTypeId>
  <DiscountValue>3</DiscountValue>
  <ExpireOn>2025-06-18T12:29:17.0520614+00:00</ExpireOn>
  <IsActive>true</IsActive>
  <IsAlreadyAvailed>true</IsAlreadyAvailed>
  <IsLogicalDeleted>true</IsLogicalDeleted>
  <MaxOrderAmount>8</MaxOrderAmount>
  <OrderAmount>1</OrderAmount>
  <excludeSaleItems>true</excludeSaleItems>
</CouponDetails>