GET api/QtyRedemption?userId={userId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
userId

string

Required

Body Parameters

None.

Response Information

Resource Description

UserQtyRedemption
NameDescriptionTypeAdditional information
UserId

string

None.

QtyPurchased

integer

None.

QtyRedeemed

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "UserId": "sample string 1",
  "QtyPurchased": 2,
  "QtyRedeemed": 3
}

text/xml

Sample:
<UserQtyRedemption xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CloudSysPOSWeb.Models">
  <QtyPurchased>2</QtyPurchased>
  <QtyRedeemed>3</QtyRedeemed>
  <UserId>sample string 1</UserId>
</UserQtyRedemption>