Quadpot
Aim of the Bet¶
To select a horse to be placed in each 4 races at a meeting, unless otherwise stated.
Rules¶
How to bet¶
Example of placing a 50p single line Quadpot bet.
mutation PlaceQuadpotBet {
placeBets(
input: {
ticketId: "ticket-de123f74-ce99-4b7d-9785-f6b22d0ec7cf"
bets: [
{
betId: "bet-quadpot-de123f74-ce99-4b7d-9785-f6b22d0ec7cf"
productId: "512e57e1-f228-45a3-ab3d-0a429940be9e"
stake: { currencyCode: GBP, totalAmount: 0.50 }
legs: [
{
productLegId: "3b37e4b0-45e6-49bb-bd02-46b6c044f8ad"
selections: [{ productLegSelectionID: "f9afcb8f-56f3-4848-9b05-447aed22edb1" }]
}
{
productLegId: "1b5e1ecc-97b7-4a46-9ce2-07e51cad8b58"
selections: [{ productLegSelectionID: "80abfc18-090c-41a0-b1d2-4f2fc7a267a3" }]
}
{
productLegId: "3b5f3260-4a80-45bb-8fda-d4ff49f0164e"
selections: [{ productLegSelectionID: "d73a8091-eebe-4bd9-9ec0-a5b391142878" }]
}
{
productLegId: "0f22ca97-5486-4214-ab1e-c5dc90b5e05c"
selections: [{ productLegSelectionID: "ad2656f3-6be2-41fc-a151-104a32e0933a" }]
}
]
}
]
}
) {
ticket {
id
toteId
bets {
nodes {
id
toteId
placement {
status
}
}
}
}
}
}
Response
{
"data": {
"placeBets": {
"ticket": {
"id": "ticket-de123f74-ce99-4b7d-9785-f6b22d0ec7cf",
"toteId": "e63bd665-93a6-4549-b129-b95f7b6992cf",
"bets": {
"nodes": [
{
"id": "bet-quadpot-de123f74-ce99-4b7d-9785-f6b22d0ec7cf",
"toteId": "98682bf4fc184803b64c71aa09116ef3",
"placement": {
"status": "ACCEPTED"
}
}
]
}
}
}
}
}