PUT api/UpdateParticipantChipStartTime

Request Information

URI Parameters

None.

Body Parameters

Collection of ParticipantChipStartTimes
NameDescriptionTypeAdditional information
EventId

integer

None.

ParticipantId

integer

None.

ChipTime

date

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "eventId": 1,
    "participantId": 2,
    "chipTime": "2025-06-09T10:47:50.0693112+00:00"
  },
  {
    "eventId": 1,
    "participantId": 2,
    "chipTime": "2025-06-09T10:47:50.0693112+00:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfParticipantChipStartTimes xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LiveResultsSite">
  <ParticipantChipStartTimes>
    <ChipTime>2025-06-09T10:47:50.0693112+00:00</ChipTime>
    <EventId>1</EventId>
    <ParticipantId>2</ParticipantId>
  </ParticipantChipStartTimes>
  <ParticipantChipStartTimes>
    <ChipTime>2025-06-09T10:47:50.0693112+00:00</ChipTime>
    <EventId>1</EventId>
    <ParticipantId>2</ParticipantId>
  </ParticipantChipStartTimes>
</ArrayOfParticipantChipStartTimes>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>