POST api/matchBeidanOdds/GetHistoryOddsList
Request Information
URI Parameters
None.
Body Parameters
BeidanHistoryOddsRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| drawNo | integer |
None. |
|
| matchNo | integer |
None. |
|
| oddsType | integer |
None. |
|
| param | string |
None. |
|
| requestTime | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"drawNo": 1,
"matchNo": 2,
"oddsType": 3,
"param": "sample string 4",
"requestTime": "2026-06-06 05:22:30"
}
application/xml, text/xml
Sample:
<BeidanHistoryOddsRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Football.WebApi.Controllers"> <drawNo>1</drawNo> <matchNo>2</matchNo> <oddsType>3</oddsType> <param>sample string 4</param> <requestTime>2026-06-06T05:22:30.8077857+08:00</requestTime> </BeidanHistoryOddsRequest>
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>