I'm trying to place a simple bet on the actual market with a valid option.
But in return I get the following error.
What am I doing wrong? Thanks in advance for your response
Code:
{
"jsonrpc":"2.0",
"method":"SportsAPING/v1.0/placeOrders",
"params":{
"customerRef":"",
"instructions":[{
"limitOrder":{
"persistenceType":"LAPSE",
"price":1000,
"size":4
},
"orderType":"LIMIT",
"selectionId":2909657,
"side":"BACK"
}
],
"marketId":"115097009"
}
}
Code:
{
"error":{
"code":-32099,
"data":{
"APINGException":{
"errorCode":"UNEXPECTED_ERROR",
"errorDetails":"",
"requestUUID":"prdang-288287-08111209-00079971d0"
},
"exceptionname":"APINGException"
},
"message":"ANGX-0006"
},
"jsonrpc":"2.0"
}


Comment