GET api/liveinplay/geteventcounts

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

BO.BETResponseObjects.BaseResponseOfSystem.Collections.Generic.ListOfBO.Models.LiveInPLay.EventCountModel
NameDescriptionTypeAdditional information
ResponseObject

Collection of BO.Models.LiveInPLay.EventCountModel

None.

ResponseMessage

string

None.

ResponseType

BO.Enums.ResponseType

None.

Response Formats

application/json, text/json

Sample:
{
  "responseObject": [
    {
      "sport": "sample string 1",
      "count": 2
    },
    {
      "sport": "sample string 1",
      "count": 2
    }
  ],
  "responseMessage": "sample string 1",
  "responseType": 1
}

application/xml, text/xml

Sample:
<BaseResponseOfListOfEventCountModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ResponseObject>
    <EventCountModel>
      <Sport>sample string 1</Sport>
      <Count>2</Count>
    </EventCountModel>
    <EventCountModel>
      <Sport>sample string 1</Sport>
      <Count>2</Count>
    </EventCountModel>
  </ResponseObject>
  <ResponseMessage>sample string 1</ResponseMessage>
  <ResponseType>Success</ResponseType>
</BaseResponseOfListOfEventCountModel>