POST api/order/creat
Request Information
URI Parameters
None.
Body Parameters
orderDtoName | Description | Type | Additional information |
---|---|---|---|
body | string |
None. |
|
totalFee | integer |
None. |
|
OrderId | string |
None. |
|
ObjectId | string |
None. |
|
OrderType | integer |
None. |
|
ShareUserId | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "body": "sample string 1", "totalFee": 2, "OrderId": "sample string 3", "ObjectId": "sample string 4", "OrderType": 5, "ShareUserId": "sample string 6" }
application/xml, text/xml
Sample:
<orderDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Wu.Entity.dto"> <ObjectId>sample string 4</ObjectId> <OrderId>sample string 3</OrderId> <OrderType>5</OrderType> <ShareUserId>sample string 6</ShareUserId> <body>sample string 1</body> <totalFee>2</totalFee> </orderDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResultEntityName | Description | Type | Additional information |
---|---|---|---|
code | integer |
None. |
|
data | Object |
None. |
|
msg | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "code": 1, "data": {}, "msg": "sample string 3" }
application/xml, text/xml
Sample:
<ResultEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Wu.API"> <code>1</code> <data /> <msg>sample string 3</msg> </ResultEntity>