POST api/CertVideoQuestionRecord?certVideoId={certVideoId}&coachId={coachId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| certVideoId | string |
Required |
|
| coachId | string |
Required |
Body Parameters
Collection of CertVideoQuestionRecordViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| QuestionId | string |
None. |
|
| RecordOptionA | boolean |
None. |
|
| RecordOptionB | boolean |
None. |
|
| RecordOptionC | boolean |
None. |
|
| RecordOptionD | boolean |
None. |
|
| RecordOptionY | boolean |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"QuestionId": "sample string 1",
"RecordOptionA": true,
"RecordOptionB": true,
"RecordOptionC": true,
"RecordOptionD": true,
"RecordOptionY": true
},
{
"QuestionId": "sample string 1",
"RecordOptionA": true,
"RecordOptionB": true,
"RecordOptionC": true,
"RecordOptionD": true,
"RecordOptionY": true
}
]
application/xml, text/xml
Sample:
<ArrayOfCertVideoQuestionRecordViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CoachKing.WeApp.ViewModel">
<CertVideoQuestionRecordViewModel>
<QuestionId>sample string 1</QuestionId>
<RecordOptionA>true</RecordOptionA>
<RecordOptionB>true</RecordOptionB>
<RecordOptionC>true</RecordOptionC>
<RecordOptionD>true</RecordOptionD>
<RecordOptionY>true</RecordOptionY>
</CertVideoQuestionRecordViewModel>
<CertVideoQuestionRecordViewModel>
<QuestionId>sample string 1</QuestionId>
<RecordOptionA>true</RecordOptionA>
<RecordOptionB>true</RecordOptionB>
<RecordOptionC>true</RecordOptionC>
<RecordOptionD>true</RecordOptionD>
<RecordOptionY>true</RecordOptionY>
</CertVideoQuestionRecordViewModel>
</ArrayOfCertVideoQuestionRecordViewModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |