I thought that if I changed the "IRL" to "AUS" in the following code I would be able to get data for Australian horse races. But I get no results at all. What am I doing wrong? Thanks.
Code:
Dim oMarketsReq As New BFUK.GetAllMarketsReq
With oMarketsReq
.header = oHeaderUK()
ReDim .eventTypeIds(0) : .eventTypeIds(0) = 7 'For horse racing
ReDim .countries(1) : .countries(0) = "GBR" : .countries(1) = "IRL" ' .countries(1) = "IRL" 'FRA for France, USA GBR
.fromDate = Today
.toDate = Today.AddDays(1)
End With


Comment