GET api/syxbetgames/punter/{punterId}/recentbets

Request Information

URI Parameters

NameDescriptionTypeAdditional information
punterId

integer

Required

Body Parameters

None.

Response Information

Resource Description

BO.BETResponseObjects.BaseResponseOfSystem.Collections.Generic.ListOfBO.Models.SyxBetGames.PunterRecentBetResult
NameDescriptionTypeAdditional information
ResponseObject

Collection of BO.Models.SyxBetGames.PunterRecentBetResult

None.

ResponseMessage

string

None.

ResponseType

BO.Enums.ResponseType

None.

Response Formats

application/json, text/json

Sample:
{
  "responseObject": [
    {
      "gameName": "sample string 1",
      "name": "sample string 2",
      "selection": "sample string 3",
      "stake": 1.0,
      "totalOdds": 4.0,
      "betStatus": "sample string 5",
      "payout": 6.0
    },
    {
      "gameName": "sample string 1",
      "name": "sample string 2",
      "selection": "sample string 3",
      "stake": 1.0,
      "totalOdds": 4.0,
      "betStatus": "sample string 5",
      "payout": 6.0
    }
  ],
  "responseMessage": "sample string 1",
  "responseType": 1
}

application/xml, text/xml

Sample:
<BaseResponseOfListOfPunterRecentBetResult xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ResponseObject>
    <PunterRecentBetResult>
      <GameName>sample string 1</GameName>
      <Name>sample string 2</Name>
      <Selection>sample string 3</Selection>
      <Stake>1</Stake>
      <TotalOdds>4</TotalOdds>
      <BetStatus>sample string 5</BetStatus>
      <Payout>6</Payout>
    </PunterRecentBetResult>
    <PunterRecentBetResult>
      <GameName>sample string 1</GameName>
      <Name>sample string 2</Name>
      <Selection>sample string 3</Selection>
      <Stake>1</Stake>
      <TotalOdds>4</TotalOdds>
      <BetStatus>sample string 5</BetStatus>
      <Payout>6</Payout>
    </PunterRecentBetResult>
  </ResponseObject>
  <ResponseMessage>sample string 1</ResponseMessage>
  <ResponseType>Success</ResponseType>
</BaseResponseOfListOfPunterRecentBetResult>