POST getsubgoodorder/{cid}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
cid

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of subgoodlist
NameDescriptionTypeAdditional information
goodid

integer

None.

goodname

string

None.

price

integer

None.

tedad

integer

None.

total

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "goodid": 1,
    "goodname": "sample string 1",
    "price": 1,
    "tedad": 1,
    "total": 1
  },
  {
    "goodid": 1,
    "goodname": "sample string 1",
    "price": 1,
    "tedad": 1,
    "total": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfsubgoodlist xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/recyclerserver.Models">
  <subgoodlist>
    <goodid>1</goodid>
    <goodname>sample string 1</goodname>
    <price>1</price>
    <tedad>1</tedad>
    <total>1</total>
  </subgoodlist>
  <subgoodlist>
    <goodid>1</goodid>
    <goodname>sample string 1</goodname>
    <price>1</price>
    <tedad>1</tedad>
    <total>1</total>
  </subgoodlist>
</ArrayOfsubgoodlist>