GET
api/v1/couponredemptiongraph?clientId={clientId}&sellerId={sellerId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| clientId | integer |
Required |
|
| sellerId | integer |
Required |
Response Information
Description:
Return type: Collection of CouponRedemptionGraph
Response Formats
application/json, text/json
[
{
"MonthYear": "sample string 1",
"TotalIssued": 2,
"TotalRedeemed": 3,
"RevenueGenerated": 4.0
},
{
"MonthYear": "sample string 1",
"TotalIssued": 2,
"TotalRedeemed": 3,
"RevenueGenerated": 4.0
}
]
text/html
[{"MonthYear":"sample string 1","TotalIssued":2,"TotalRedeemed":3,"RevenueGenerated":4.0},{"MonthYear":"sample string 1","TotalIssued":2,"TotalRedeemed":3,"RevenueGenerated":4.0}]
application/xml, text/xml
<ArrayOfCouponRedemptionGraph xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Customer">
<CouponRedemptionGraph>
<MonthYear>sample string 1</MonthYear>
<RevenueGenerated>4</RevenueGenerated>
<TotalIssued>2</TotalIssued>
<TotalRedeemed>3</TotalRedeemed>
</CouponRedemptionGraph>
<CouponRedemptionGraph>
<MonthYear>sample string 1</MonthYear>
<RevenueGenerated>4</RevenueGenerated>
<TotalIssued>2</TotalIssued>
<TotalRedeemed>3</TotalRedeemed>
</CouponRedemptionGraph>
</ArrayOfCouponRedemptionGraph>
