Hi all,
I am trying to get the json correct for placing a bet on a non horse racing sport.
Im having little success and getting access denied, so I am nowhere near where I should be...
This is my json payload, but I just want to simply place an order on 'Match Odds' for a team from a sport such as Australian rules or cricket.
This is what I have so far:
Could anyone poke me in the right direction? I think this example is specific to horse racing.
I am trying to get the json correct for placing a bet on a non horse racing sport.
Im having little success and getting access denied, so I am nowhere near where I should be...
This is my json payload, but I just want to simply place an order on 'Match Odds' for a team from a sport such as Australian rules or cricket.
This is what I have so far:
Code:
[
{
"jsonrpc" => "2.0",
"method" => "SportsAPING/v1.0/placeOrders",
"params" => {
"marketId" => "2.101358654",
"instructions" => [
{
"selectionId" => "39981",
"handicap" => "0",
"side" => "LAY",
"orderType" => "LIMIT",
"limitOrder" => {
"size" => "10",
"price" => "1.27",
"persistenceType" => "LAPSE"
}
}
]
},
"id" => 1
}
]


Comment