POST api/v3/LiveQuizEvents/PostLiveQuizEvent

Request Information

URI Parameters

None.

Body Parameters

LiveQuizEvent
NameDescriptionTypeAdditional information
InstructorLoginId

string

None.

ShotClassName

string

None.

StartDateTime

date

None.

EndDateTime

date

None.

LiveEventAnswerDuration

integer

None.

InstructorName

string

None.

PassCode

string

None.

Request Formats

application/json, text/json

Sample:
{
  "InstructorLoginId": "sample string 1",
  "ShotClassName": "sample string 2",
  "StartDateTime": "2024-09-05T10:02:09.9442278Z",
  "EndDateTime": "2024-09-05T10:02:09.9442278Z",
  "LiveEventAnswerDuration": 5,
  "InstructorName": "sample string 6",
  "PassCode": "sample string 7"
}

text/html

Sample:
{"InstructorLoginId":"sample string 1","ShotClassName":"sample string 2","StartDateTime":"2024-09-05T10:02:09.9442278Z","EndDateTime":"2024-09-05T10:02:09.9442278Z","LiveEventAnswerDuration":5,"InstructorName":"sample string 6","PassCode":"sample string 7"}

text/xml

Sample:
<LiveQuizEvent xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShotClassCore.Models">
  <EndDateTime>2024-09-05T10:02:09.9442278Z</EndDateTime>
  <InstructorLoginId>sample string 1</InstructorLoginId>
  <InstructorName>sample string 6</InstructorName>
  <LiveEventAnswerDuration>5</LiveEventAnswerDuration>
  <PassCode>sample string 7</PassCode>
  <ShotClassName>sample string 2</ShotClassName>
  <StartDateTime>2024-09-05T10:02:09.9442278Z</StartDateTime>
</LiveQuizEvent>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json, text/html

Sample:
true

text/xml

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