POST api/orderLine/BeidanOrderAdd
Request Information
URI Parameters
None.
Body Parameters
BeidanOrderLineAddReq| Name | Description | Type | Additional information |
|---|---|---|---|
| uuid | string |
None. |
|
| userId | string |
None. |
|
| passType | string |
None. |
|
| passMethod | string |
None. |
|
| goodsType | string |
None. |
|
| zhushu | integer |
None. |
|
| qihao | string |
None. |
|
| beishu | integer |
None. |
|
| amount | integer |
None. |
|
| fenshu | integer |
None. |
|
| remark | string |
None. |
|
| outOrder | integer |
None. |
|
| orderTime | date |
None. |
|
| listDtl | Collection of BeidanOrderDtlAddReq |
None. |
Request Formats
application/json, text/json
Sample:
{
"uuid": "sample string 1",
"userId": "sample string 2",
"passType": "sample string 3",
"passMethod": "sample string 4",
"goodsType": "sample string 5",
"zhushu": 6,
"qihao": "sample string 7",
"beishu": 8,
"amount": 9,
"fenshu": 10,
"remark": "sample string 11",
"outOrder": 12,
"orderTime": "2026-06-06 05:17:14",
"listDtl": [
{
"changci": "sample string 1",
"matchEndTime": "2026-06-06 05:17:14",
"hostFull": "sample string 3",
"guestFull": "sample string 4",
"type": "sample string 5",
"odds": 6.0,
"rang": 7
},
{
"changci": "sample string 1",
"matchEndTime": "2026-06-06 05:17:14",
"hostFull": "sample string 3",
"guestFull": "sample string 4",
"type": "sample string 5",
"odds": 6.0,
"rang": 7
}
]
}
application/xml, text/xml
Sample:
<BeidanOrderLineAddReq xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Football.WebApi.Controllers">
<amount>9</amount>
<beishu>8</beishu>
<fenshu>10</fenshu>
<goodsType>sample string 5</goodsType>
<listDtl>
<BeidanOrderDtlAddReq>
<changci>sample string 1</changci>
<guestFull>sample string 4</guestFull>
<hostFull>sample string 3</hostFull>
<matchEndTime>2026-06-06T05:17:14.1104176+08:00</matchEndTime>
<odds>6</odds>
<rang>7</rang>
<type>sample string 5</type>
</BeidanOrderDtlAddReq>
<BeidanOrderDtlAddReq>
<changci>sample string 1</changci>
<guestFull>sample string 4</guestFull>
<hostFull>sample string 3</hostFull>
<matchEndTime>2026-06-06T05:17:14.1104176+08:00</matchEndTime>
<odds>6</odds>
<rang>7</rang>
<type>sample string 5</type>
</BeidanOrderDtlAddReq>
</listDtl>
<orderTime>2026-06-06T05:17:14.1104176+08:00</orderTime>
<outOrder>12</outOrder>
<passMethod>sample string 4</passMethod>
<passType>sample string 3</passType>
<qihao>sample string 7</qihao>
<remark>sample string 11</remark>
<userId>sample string 2</userId>
<uuid>sample string 1</uuid>
<zhushu>6</zhushu>
</BeidanOrderLineAddReq>
application/x-www-form-urlencoded
Sample:
Sample not available.
text/plain
Sample:
Sample not available.
Response Information
Resource Description
ResultMsg| Name | Description | Type | Additional information |
|---|---|---|---|
| success | boolean |
None. |
|
| message | string |
None. |
|
| code | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"success": true,
"message": "sample string 2",
"code": 3
}
application/xml, text/xml
Sample:
<ResultMsg xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Football.Model"> <Code>3</Code> <Message>sample string 2</Message> <Success>true</Success> </ResultMsg>