4-fold Accumulator with Boosted Odds

This is an example of a 4-fold accumulator with boosted odds. The ticket contains only one bet (Bets array length = 1) which further contains four selections (Selections array length = 4).

One of the selections is of type "odds-boost" which contains the boosted (increased) odds and a normal selection of type "uf" or "external". The normal selection contains the normal (non-boosted) odds, as received from the odds feed. So the "odds-boost" selection actually contains two "odds" objects, one representing the boosted odds, the other the non-boosted odds.

In this example, the boosted (increased) odds have a value of 9.5, while the normal odds have a value of 7.1.

MTS will take into account the boosted odds on the selection, but the boosted odds are not part of the ticket placement response.

Ticket Placement Request
{
    "operatorId": 9985,
    "content": {
      "type": "ticket",
      "ticketId": "Ticket_6230",
      "bets": [
        {
          "selections": [
            {
              "type": "uf",
              "productId": "3",
              "eventId": "sr:match:14938771",
              "marketId": "223",
              "outcomeId": "1715",
              "specifiers": "hcp=1.5",
              "odds": {
                "type": "decimal",
                "value": "1.1"
              }
            },
            {
              "type": "uf",
              "productId": "1",
              "eventId": "sr:match:15163591",
              "marketId": "1",
              "outcomeId": "2",
              "specifiers": "hcp=1:0",
              "odds": {
                "type": "decimal",
                "value": "1.48"
              }
            },
            {
              "type": "uf",
              "productId": "3",
              "eventId": "sr:match:15050881",
              "marketId": "1",
              "outcomeId": "2",
              "odds": {
                "type": "decimal",
                "value": "1.32"
              }
            }, 
            {
              "type": "odds-boost",
              "selection": {
                "type": "uf",
                "productId": "1",
                "eventId": "sr:match:16470657",
                "marketId": "1",
                "outcomeId": "2",
                "odds": {
                   "type": "decimal",
                   "value": "7.1"
                }
              },
              "odds": {
                "type": "decimal",
                "value": "9.5"
              }
            }
          ],
          "stake": [
            {
              "type": "cash",
              "currency": "EUR",
              "amount": "50"
            }
          ]
        }
      ],
      "context": {
        "channel": {
          "type": "retail",
          "shopId": "shop_789135"
        },
        "limitId": 1409
      }
    },
    "correlationId": "tesd83nky7sc",
    "timestampUtc": 1678886959000,
    "operation": "ticket-placement",
    "version": "3.0"
  }
Ticket Placement Response
{
  "content": {
    "type": "ticket-reply",
    "signature": "hlDfZ5uX5+SftXxb4+M0Mp3sN7v4cZPEfXBdX4T32qw=",
    "status": "accepted",
    "ticketId": "Ticket_6230",
    "code": 0,
    "message": "Transaction processed",
    "betDetails": [
      {
        "selectionDetails": [
          {
            "selection": {
              "type": "uf",
              "productId": "3",
              "eventId": "sr:match:14938771",
              "marketId": "223",
              "outcomeId": "1715",
              "specifiers": "hcp=1.5",
              "odds": {
                "type": "decimal",
                "value": "1.1"
              }
            },
            "code": 0,
            "message": "Transaction processed"
          },
          {
            "selection": {
              "type": "uf",
              "productId": "1",
              "eventId": "sr:match:15163591",
              "marketId": "1",
              "outcomeId": "2",
              "specifiers": "hcp=1:0",
              "odds": {
                "type": "decimal",
                "value": "1.48"
              }
            },
            "code": 0,
            "message": "Transaction processed"
          },
          {
            "selection": {
              "type": "uf",
              "productId": "3",
              "eventId": "sr:match:15050881",
              "marketId": "1",
              "outcomeId": "2",
              "odds": {
                "type": "decimal",
                "value": "1.32"
              }
            },
            "code": 0,
            "message": "Transaction processed"
          },
          {
            "selection": {
              "type": "uf",
              "productId": "1",
              "eventId": "sr:match:16470657",
              "marketId": "1",
              "outcomeId": "2",
              "odds": {
                "type": "decimal",
                "value": "7.1"
              }
            },
            "code": 0,
            "message": "Transaction processed"
          }
        ],
        "code": 0,
        "message": "Transaction processed"
      }
    ],
    "exchangeRate":   [
      {
        "fromCurrency": "EUR",
        "toCurrency": "EUR",
        "rate": "1.00000"
      }
    ]
  },
  "correlationId": "tesd83nky7sc",
  "timestampUtc": 1678886960000,
  "operation": "ticket-placement",
  "version": "3.0"
}

Last updated

Was this helpful?