Place
Aim of the Bet¶
To select a horse to finish placed. The number of place positions varies based on the race, so check the rules for details.
Rules¶
How to bet¶
Example of placing a 50p Place bet.
mutation PlacePlaceBet {
placeBets(
input: {
ticketId: "ticket-25b17fbb-a249-40a4-93eb-0d3f67a4cdb9"
bets: [
{
betId: "bet-place-25b17fbb-a249-40a4-93eb-0d3f67a4cdb9"
productId: "512e57e1-f228-45a3-ab3d-0a429940be9e"
stake: { currencyCode: GBP totalAmount: 0.50 }
legs: [
{
productLegId: "3b37e4b0-45e6-49bb-bd02-46b6c044f8a"
selections: [{ productLegSelectionID: "c2c4500a-243d-4b82-9b98-d88a642d5761" }]
}
]
}
]
}
) {
ticket {
id
toteId
bets {
nodes {
id
toteId
placement {
status
}
}
}
}
}
}
{
"data": {
"placeBets": {
"ticket": {
"id": "ticket-25b17fbb-a249-40a4-93eb-0d3f67a4cdb9",
"toteId": "23f521d0-1a3d-41bf-b621-e6f02a053c8f",
"bets": {
"nodes": [
{
"id": "bet-place-25b17fbb-a249-40a4-93eb-0d3f67a4cdb9",
"toteId": "bc49684f1eee4433af262819f984723d",
"placement": {
"status": "ACCEPTED"
}
}
]
}
}
}
}
}