GET api/Teams/RiderVIP?seasonCd={seasonCd}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
seasonCd

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of RiderVIP
NameDescriptionTypeAdditional information
Place

integer

None.

RiderID

integer

None.

RiderName

string

None.

TeamName

string

None.

OutCnt

integer

None.

RideCnt

integer

None.

RidePct

decimal number

None.

AggrScore

decimal number

None.

BehindLead

decimal number

None.

TeamID

integer

None.

RiderHomeCntry

string

None.

RiderHomeTown

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Place": 1,
    "RiderID": 2,
    "RiderName": "sample string 3",
    "TeamName": "sample string 4",
    "OutCnt": 5,
    "RideCnt": 6,
    "RidePct": 7.0,
    "AggrScore": 8.0,
    "BehindLead": 9.0,
    "TeamID": 10,
    "RiderHomeCntry": "sample string 11",
    "RiderHomeTown": "sample string 12"
  },
  {
    "Place": 1,
    "RiderID": 2,
    "RiderName": "sample string 3",
    "TeamName": "sample string 4",
    "OutCnt": 5,
    "RideCnt": 6,
    "RidePct": 7.0,
    "AggrScore": 8.0,
    "BehindLead": 9.0,
    "TeamID": 10,
    "RiderHomeCntry": "sample string 11",
    "RiderHomeTown": "sample string 12"
  }
]

application/xml, text/xml

Sample:
<ArrayOfRiderVIP xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PBR_API.Models">
  <RiderVIP>
    <AggrScore>8</AggrScore>
    <BehindLead>9</BehindLead>
    <OutCnt>5</OutCnt>
    <Place>1</Place>
    <RideCnt>6</RideCnt>
    <RidePct>7</RidePct>
    <RiderHomeCntry>sample string 11</RiderHomeCntry>
    <RiderHomeTown>sample string 12</RiderHomeTown>
    <RiderID>2</RiderID>
    <RiderName>sample string 3</RiderName>
    <TeamID>10</TeamID>
    <TeamName>sample string 4</TeamName>
  </RiderVIP>
  <RiderVIP>
    <AggrScore>8</AggrScore>
    <BehindLead>9</BehindLead>
    <OutCnt>5</OutCnt>
    <Place>1</Place>
    <RideCnt>6</RideCnt>
    <RidePct>7</RidePct>
    <RiderHomeCntry>sample string 11</RiderHomeCntry>
    <RiderHomeTown>sample string 12</RiderHomeTown>
    <RiderID>2</RiderID>
    <RiderName>sample string 3</RiderName>
    <TeamID>10</TeamID>
    <TeamName>sample string 4</TeamName>
  </RiderVIP>
</ArrayOfRiderVIP>