GET api/Ride/{rideId}

Get a single Ride by its ID.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
rideId

Ride ID

integer

Required

Body Parameters

None.

Response Information

Resource Description

EventRide
NameDescriptionTypeAdditional information
RideID

Unique identifier for the Ride

integer

None.

Section

Section - used in conjunction with Sequence to indicate the bucking order

integer

None.

Sequence

Sequence within the Section - used in conjunction with Section to indicate the bucking order

integer

None.

EventBullID

Unique identifier for the Bull at this Event

integer

None.

EventBull

EventBull

None.

EventRiderID

Unique identifier for the Rider at this Event

integer

None.

RiderID

Unique identifier for the Rider

integer

None.

RiderRank

Ranking for the Rider within the Season Standings

integer

None.

RiderFullName

Rider's full name

string

None.

RiderTeam

ID and Name of the Rider's team

Team

None.

BullScore

Final bull score for the Ride.

decimal number

None.

RiderScore

Final ride/rider score for the Ride.

decimal number

None.

BuckOffTime

Number of seconds elapsed between the chute opening (ride starting) and rider was bucked off. Cannot exceed 7.99 as an 8 second ride is a qualified ride.

decimal number

None.

ChuteStartDtTm

Chute start DateTime. UTC DateTime denoting when the rider entered the chute and the chute became 'active'. Represented in ISO_8601 DateTime format (2018-09-22T23:17:02.106Z)

date

None.

ClockStartDtTm

Clock/Ride start DateTime. UTC DateTime denoting when the chute opened and the ride clock started. Represented in ISO_8601 DateTime format (2018-09-22T23:17:02.106Z)

date

None.

ReRideTaken

Indicator of whether or not a Re-Ride was taken for this ride

boolean

None.

IsReRide

Indicator of whether or not this ride is a Re-Ride of a prior ride

boolean

None.

DQReason

Reason the ride was marked as disqualified

string

None.

IsChallenge

Indicator of whether or not this ride was challenged

boolean

None.

IsChallengeSuccess

Indicator of whether or not this ride challenge was successful

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "RideID": 3,
  "Section": 1,
  "Sequence": 1,
  "EventBullID": 1,
  "EventBull": {
    "BullID": 1,
    "EventBullID": 2,
    "BullName": "sample string 3",
    "BullNo": "sample string 6-sample string 4",
    "ContractorCode": "sample string 6",
    "ContractorName": "sample string 7",
    "Delivery": "sample string 8"
  },
  "EventRiderID": 1,
  "RiderID": 1,
  "RiderRank": 1,
  "RiderFullName": "sample string 4",
  "RiderTeam": {
    "TeamID": 1,
    "TeamName": "sample string 2"
  },
  "BullScore": 1.0,
  "RiderScore": 1.0,
  "BuckOffTime": 1.0,
  "ChuteStartDtTm": "2024-07-07T21:02:12.1869134Z",
  "ClockStartDtTm": "2024-07-07T21:02:12.1869134Z",
  "ReRideTaken": true,
  "IsReRide": true,
  "DQReason": "sample string 7",
  "IsChallenge": true,
  "IsChallengeSuccess": true
}