GET Bets/CheckSettings?marketName={marketName}&eventId={eventId}&marketId={marketId}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
marketName | string |
Required |
|
eventId | string |
Required |
|
marketId | string |
Required |
Body Parameters
BetSettingDTOName | Description | Type | Additional information |
---|---|---|---|
ParentId | integer |
None. |
|
MasterId | integer |
None. |
|
AdminId | integer |
None. |
|
SuperId | integer |
None. |
|
Stake | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{ "ParentId": 1, "MasterId": 2, "AdminId": 3, "SuperId": 4, "Stake": 5.1 }
application/xml, text/xml
Sample:
<BetSettingDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FixWebApi.Models.DTO"> <AdminId>3</AdminId> <MasterId>2</MasterId> <ParentId>1</ParentId> <Stake>5.1</Stake> <SuperId>4</SuperId> </BetSettingDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseDTOName | Description | Type | Additional information |
---|---|---|---|
Status | boolean |
None. |
|
Result | Object |
None. |
|
Pay | Object |
None. |
|
Count | decimal number |
None. |
|
bets | Object |
None. |
|
ResultValue | Object |
None. |
|
eventDetail | Object |
None. |
|
Ispwd | boolean |
None. |
|
IsAuth | boolean |
None. |
|
TotalInplay | decimal number |
None. |
|
cricketCount | decimal number |
None. |
|
footballCount | decimal number |
None. |
|
TennisCount | decimal number |
None. |
|
cricketInplayCount | decimal number |
None. |
|
footballInplayCount | decimal number |
None. |
|
TennisInplayCount | decimal number |
None. |
|
GreyHoundInplayCount | decimal number |
None. |
|
HorseRacingInplayCount | decimal number |
None. |
|
GreyHoundCount | decimal number |
None. |
|
HorseRacingCount | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{ "Status": true, "Result": {}, "Pay": {}, "Count": 4.1, "bets": {}, "ResultValue": {}, "eventDetail": {}, "Ispwd": true, "IsAuth": true, "TotalInplay": 10.1, "cricketCount": 11.1, "footballCount": 12.1, "TennisCount": 13.1, "cricketInplayCount": 14.1, "footballInplayCount": 15.1, "TennisInplayCount": 16.1, "GreyHoundInplayCount": 17.1, "HorseRacingInplayCount": 18.1, "GreyHoundCount": 19.1, "HorseRacingCount": 20.1 }
application/xml, text/xml
Sample:
<ResponseDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FixWebApi.Models.DTO"> <Count>4.1</Count> <GreyHoundCount>19.1</GreyHoundCount> <GreyHoundInplayCount>17.1</GreyHoundInplayCount> <HorseRacingCount>20.1</HorseRacingCount> <HorseRacingInplayCount>18.1</HorseRacingInplayCount> <IsAuth>true</IsAuth> <Ispwd>true</Ispwd> <Pay /> <Result /> <ResultValue /> <Status>true</Status> <TennisCount>13.1</TennisCount> <TennisInplayCount>16.1</TennisInplayCount> <TotalInplay>10.1</TotalInplay> <bets /> <cricketCount>11.1</cricketCount> <cricketInplayCount>14.1</cricketInplayCount> <eventDetail /> <footballCount>12.1</footballCount> <footballInplayCount>15.1</footballInplayCount> </ResponseDTO>