GET api/User/GetCardCouponsInfo?code={code}&platformId={platformId}

“GetCardCouponsInfo”的文档。

Request Information

Parameters

NameDescriptionAdditional information
code
“code”的文档。

Define this parameter in the request URI.

platformId
“platformId”的文档。

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "Id": 1,
  "Cid": 2,
  "UserId": 3,
  "Name": "sample string 4",
  "Code": "sample string 5",
  "IsActivated": true,
  "CardTypeId": 7,
  "Amount": 8.0,
  "Value": 9.0,
  "CreateTime": "sample string 10",
  "ExpireTime": "sample string 11",
  "ProductId": 12,
  "PlatformId": 13,
  "Content": "sample string 14",
  "RemarkStatus": true
}

application/xml, text/xml

Sample:
<CardCouponModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TaiShengShi.Models">
  <Amount>8</Amount>
  <CardTypeId>7</CardTypeId>
  <Cid>2</Cid>
  <Code>sample string 5</Code>
  <Content>sample string 14</Content>
  <CreateTime>sample string 10</CreateTime>
  <ExpireTime>sample string 11</ExpireTime>
  <Id>1</Id>
  <IsActivated>true</IsActivated>
  <Name>sample string 4</Name>
  <PlatformId>13</PlatformId>
  <ProductId>12</ProductId>
  <RemarkStatus>true</RemarkStatus>
  <UserId>3</UserId>
  <Value>9</Value>
</CardCouponModel>