Hello developers,
I am having issues fetching livebets that have not been fully completed. I am using the following request to the API:
The response never receives any EXECUTABLE bets/orders:
I have set my program to run every 5 seconds and save all new incoming orders to my database, but after setting the orderProjection to EXECUTABLE, no orders are getting imported.
The use case here, is that my client wants to replace all orders that have not been completed, with new price/odds, to try and complete them within certain criteria.
I am having issues fetching livebets that have not been fully completed. I am using the following request to the API:
HTML Code:
{
"jsonrpc": "2.0",
"method": "SportsAPING/v1.0/listCurrentOrders",
"params": {
"orderProjection": "EXECUTABLE",
"dateRange": {}
},
"id": 1
}
HTML Code:
{
"jsonrpc": "2.0",
"result": {
"currentOrders": [],
"moreAvailable": false
},
"id": 1
}
The use case here, is that my client wants to replace all orders that have not been completed, with new price/odds, to try and complete them within certain criteria.


Comment