POST api/gatherBeidan/AddMatchRealTimeData

Request Information

URI Parameters

None.

Body Parameters

MatchReadTimeDataReq
NameDescriptionTypeAdditional information
type

integer

None.

beidanType

integer

None.

beidanDrawNo

integer

None.

data

string

None.

updateTime

date

None.

Request Formats

application/json, text/json

Sample:
{
  "type": 1,
  "beidanType": 2,
  "beidanDrawNo": 3,
  "data": "sample string 4",
  "updateTime": "2026-06-06 05:20:34"
}

application/xml, text/xml

Sample:
<MatchReadTimeDataReq xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Football.WebApi.Controllers">
  <beidanDrawNo>3</beidanDrawNo>
  <beidanType>2</beidanType>
  <data>sample string 4</data>
  <type>1</type>
  <updateTime>2026-06-06T05:20:34.3198935+08:00</updateTime>
</MatchReadTimeDataReq>

application/x-www-form-urlencoded

Sample:

Sample not available.

text/plain

Sample:

Sample not available.

Response Information

Resource Description

ResultMsg
NameDescriptionTypeAdditional 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>