Skip to content

IrishJackpot

Aim of the Bet

To select a horse to be first in 4 races in a meeting, unless otherwise stated.

Rules

Betting Rules

How to bet

Example of placing a 50p single line Irish Jackpot bet.

mutation IrishJackpotBet {
  placeBets(
    input: {
      ticketId: "ticket-de123f74-ce99-4b7d-9785-f6b22d0ec7cf"
      bets: [
        {
          betId: "bet-irish-jackpot-de123f74-ce99-4b7d-9785-f6b22d0ec7cf"
          productId: "512e57e1-f228-45a3-ab3d-0a429940be9e"
          stake: { currencyCode: GBP, totalAmount: 0.50 }
          legs: [
            {
              productLegId: "102e57e1-f228-45a3-ab3d-0a429940be9e"
              selections: [{ productLegSelectionID: "112e57e1-f228-45a3-ab3d-0a429940be9e" }]
            }
            {
              productLegId: "122e57e1-f228-45a3-ab3d-0a429940be9e"
              selections: [{ productLegSelectionID: "132e57e1-f228-45a3-ab3d-0a429940be9e" }]
            }
            {
              productLegId: "142e57e1-f228-45a3-ab3d-0a429940be9e"
              selections: [{ productLegSelectionID: "152e57e1-f228-45a3-ab3d-0a429940be9e" }]
            }
            {
              productLegId: "162e57e1-f228-45a3-ab3d-0a429940be9e"
              selections: [{ productLegSelectionID: "172e57e1-f228-45a3-ab3d-0a429940be9e" }]
            }
          ]
        }
      ]
    }
  ) {
    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-irish-jackpot-de123f74-ce99-4b7d-9785-f6b22d0ec7cf",
              "toteId": "98682bf4fc184803b64c71aa09116ef3",
              "placement": {
                "status": "ACCEPTED"
              }
            }
          ]
        }
      }
    }
  }
}