PUT api/UpdateParticipantChipStartTime
Request Information
URI Parameters
None.
Body Parameters
Collection of ParticipantChipStartTimes| Name | Description | Type | Additional information |
|---|---|---|---|
| EventId | integer |
None. |
|
| ParticipantId | integer |
None. |
|
| ChipTime | date |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"eventId": 1,
"participantId": 2,
"chipTime": "2025-10-23T20:10:19.919904+00:00"
},
{
"eventId": 1,
"participantId": 2,
"chipTime": "2025-10-23T20:10:19.919904+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-10-23T20:10:19.919904+00:00</ChipTime>
<EventId>1</EventId>
<ParticipantId>2</ParticipantId>
</ParticipantChipStartTimes>
<ParticipantChipStartTimes>
<ChipTime>2025-10-23T20:10:19.919904+00:00</ChipTime>
<EventId>1</EventId>
<ParticipantId>2</ParticipantId>
</ParticipantChipStartTimes>
</ArrayOfParticipantChipStartTimes>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>