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
BetSettingDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | integer |
None. |
|
| ParentId | integer |
None. |
|
| MasterId | integer |
None. |
|
| AdminId | integer |
None. |
|
| SuperId | integer |
None. |
|
| Stake | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserId": 1,
"ParentId": 2,
"MasterId": 3,
"AdminId": 4,
"SuperId": 5,
"Stake": 6.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>4</AdminId> <MasterId>3</MasterId> <ParentId>2</ParentId> <Stake>6.1</Stake> <SuperId>5</SuperId> <UserId>1</UserId> </BetSettingDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseDTO| Name | 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>