POST api/Jackpot/GetJackpotDetails

Request Information

URI Parameters

None.

Body Parameters

GameRequestModel
NameDescriptionTypeAdditional information
games

Collection of Game

None.

Request Formats

application/json, text/json

Sample:
{
  "games": [
    {
      "gameID": "sample string 1",
      "sharedJackpot": true
    },
    {
      "gameID": "sample string 1",
      "sharedJackpot": true
    }
  ]
}

application/xml, text/xml

Sample:
<GameRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/nhLottery.Controllers">
  <games>
    <Game>
      <gameID>sample string 1</gameID>
      <sharedJackpot>true</sharedJackpot>
    </Game>
    <Game>
      <gameID>sample string 1</gameID>
      <sharedJackpot>true</sharedJackpot>
    </Game>
  </games>
</GameRequestModel>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'GameRequestModel'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.