GET api/betting/autostretch

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

BO.BETResponseObjects.BaseResponseOfSystem.Collections.Generic.ListOfBO.Models.Betting.AutoStretchModel
NameDescriptionTypeAdditional information
ResponseObject

Collection of BO.Models.Betting.AutoStretchModel

None.

ResponseMessage

string

None.

ResponseType

BO.Enums.ResponseType

None.

Response Formats

application/json, text/json

Sample:
{
  "responseObject": [
    {
      "sportId": 1,
      "numberOfLegs": 64,
      "stretchPercentage": 3.0
    },
    {
      "sportId": 1,
      "numberOfLegs": 64,
      "stretchPercentage": 3.0
    }
  ],
  "responseMessage": "sample string 1",
  "responseType": 1
}

application/xml, text/xml

Sample:
<BaseResponseOfListOfAutoStretchModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ResponseObject>
    <AutoStretchModel>
      <SportID>1</SportID>
      <NumberOfLegs>64</NumberOfLegs>
      <StretchPercentage>3</StretchPercentage>
    </AutoStretchModel>
    <AutoStretchModel>
      <SportID>1</SportID>
      <NumberOfLegs>64</NumberOfLegs>
      <StretchPercentage>3</StretchPercentage>
    </AutoStretchModel>
  </ResponseObject>
  <ResponseMessage>sample string 1</ResponseMessage>
  <ResponseType>Success</ResponseType>
</BaseResponseOfListOfAutoStretchModel>