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 |
---|---|---|---|
UserId | integer |
None. |
|
ParentId | integer |
None. |
|
AdminId | integer |
None. |
|
SuperId | integer |
None. |
|
Stake | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{ "UserId": 1, "ParentId": 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> <ParentId>2</ParentId> <Stake>5.1</Stake> <SuperId>4</SuperId> <UserId>1</UserId> </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. |
|
eventDetail | Object |
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. |
|
GreyHoundCount | decimal number |
None. |
|
GreyHoundInplayCount | decimal number |
None. |
|
HorseRacingCount | decimal number |
None. |
|
HorseRacingInplayCount | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{ "Status": true, "Result": {}, "Pay": {}, "Count": 4.1, "bets": {}, "eventDetail": {}, "cricketCount": 7.1, "footballCount": 8.1, "TennisCount": 9.1, "cricketInplayCount": 10.1, "footballInplayCount": 11.1, "TennisInplayCount": 12.1, "GreyHoundCount": 13.1, "GreyHoundInplayCount": 14.1, "HorseRacingCount": 15.1, "HorseRacingInplayCount": 16.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>13.1</GreyHoundCount> <GreyHoundInplayCount>14.1</GreyHoundInplayCount> <HorseRacingCount>15.1</HorseRacingCount> <HorseRacingInplayCount>16.1</HorseRacingInplayCount> <Pay /> <Result /> <Status>true</Status> <TennisCount>9.1</TennisCount> <TennisInplayCount>12.1</TennisInplayCount> <bets /> <cricketCount>7.1</cricketCount> <cricketInplayCount>10.1</cricketInplayCount> <eventDetail /> <footballCount>8.1</footballCount> <footballInplayCount>11.1</footballInplayCount> </ResponseDTO>