GET api/Times/getall/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of Time
NameDescriptionTypeAdditional information
Id

integer

None.

ParticipantId

integer

None.

Time

date

None.

SubmittedDateTime

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "participantId": 2,
    "time": "2025-05-24T23:29:25.3850034+00:00",
    "submittedDateTime": "2025-05-24T23:29:25.3850034+00:00"
  },
  {
    "id": 1,
    "participantId": 2,
    "time": "2025-05-24T23:29:25.3850034+00:00",
    "submittedDateTime": "2025-05-24T23:29:25.3850034+00:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfTime xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LiveResultsDataClasses">
  <Time>
    <Id>1</Id>
    <ParticipantId>2</ParticipantId>
    <SubmittedDateTime>2025-05-24T23:29:25.3850034+00:00</SubmittedDateTime>
    <Time>2025-05-24T23:29:25.3850034+00:00</Time>
  </Time>
  <Time>
    <Id>1</Id>
    <ParticipantId>2</ParticipantId>
    <SubmittedDateTime>2025-05-24T23:29:25.3850034+00:00</SubmittedDateTime>
    <Time>2025-05-24T23:29:25.3850034+00:00</Time>
  </Time>
</ArrayOfTime>