external_bet
Goal: Place an external selection as customer_external on event ext:match:39999 and receive accepted.
Use Selection.newExtSelectionBuilder().setEvent("ext:match:39999").setOutcome("ext-pre:22017:s00").setExpSettleTime(...).setOdds(...). Wire type "external".
How to build the request (Java SDK)
Java example
import com.sportradar.mbs.sdk.entities.channel.Channel;
import com.sportradar.mbs.sdk.entities.common.AcceptanceStatus;
import com.sportradar.mbs.sdk.entities.common.Bet;
import com.sportradar.mbs.sdk.entities.common.EndCustomer;
import com.sportradar.mbs.sdk.entities.common.TicketContext;
import com.sportradar.mbs.sdk.entities.odds.Odds;
import com.sportradar.mbs.sdk.entities.request.TicketRequest;
import com.sportradar.mbs.sdk.entities.response.TicketResponse;
import com.sportradar.mbs.sdk.entities.selection.Selection;
import com.sportradar.mbs.sdk.entities.selection.UfSelection;
import com.sportradar.mbs.sdk.entities.stake.Stake;
import java.math.BigDecimal;
TicketRequest request = TicketRequest.newBuilder()
.setTicketId("tid-ext")
.setContext(TicketContext.newBuilder()
.setLimitId(123L)
.setChannel(Channel.newMobileChannelBuilder()
.setLang("en")
.setIp("127.0.0.1")
.setDeviceId("deviceId123")
.build())
.setEndCustomer(EndCustomer.newBuilder().setId("customer_external").build())
.build())
.setBets(Bet.newBuilder()
.setBetId("bet-1")
.setSelections(Selection.newExtSelectionBuilder()
.setEvent("ext:match:39999")
.setOutcome("ext-pre:22017:s00")
.setExpSettleTime(1999999999999L)
.setOdds(Odds.newDecimalOddsBuilder().setValue(new BigDecimal("1.10")).build())
.build())
.setStake(Stake.newCashStakeBuilder().setAmount(new BigDecimal("10")).setCurrency("EUR").build())
.build())
.build();
TicketResponse response = mbsSdk.getTicketProtocol().sendTicket(request);
// ACCEPTEDWire JSON (what the SDK sends)
operatorId
9985
Mandatory
integer
Yes
correlationId
"corr-1"
Mandatory
string
No (echoed in reply)
timestampUtc
1710000000000
Mandatory
integer
Yes
operation
"ticket-placement"
Mandatory
string
No
version
"3.0"
Mandatory
string
No (echoed in reply)
content
(object)
Mandatory
object
No
content.type
"ticket"
Mandatory
string
No
content.context
(object)
Mandatory
object
No
content.context.limitId
123
Mandatory
integer
Yes
content.context.channel
(object)
Mandatory
object
Yes
content.context.channel.type
"mobile"
Mandatory
string
Yes
content.context.channel.lang
"en"
Mandatory
string
Yes
content.context.channel.ip
"127.0.0.1"
Optional
string
Yes
content.context.channel.deviceId
"deviceId123"
Optional
string
Yes
content.context.endCustomer
(object)
Mandatory (sandbox)
object
No
content.context.endCustomer.id
"customer_external"
Mandatory (sandbox)
string
No (routing)
content.bets[].selections[].type
"external"
Mandatory
string
No (routing)
content.bets[].selections[].event
"ext:match:39999"
Mandatory
string
No (routing)
content.bets[].selections[].outcome
"ext-pre:22017:s00"
Mandatory
string
No (echoed)
content.bets[].selections[].expSettleTime
1999999999999
Mandatory
integer
Yes
content.bets[].selections[].odds
decimal object
Mandatory
object
No
content.bets[].stake[].type
"cash"
Mandatory
string
No (routing)
Expected response
getStatus()
AcceptanceStatus.ACCEPTED
getCode()
0
getMessage()
"accepted" (sandbox)
Common mistakes
Using sr:match:… UF instead of external
Wrong scenario
Wrong external event id
Route mismatch
See also: Error responses in the parent manual.
Was this helpful?