POST ClientTestReport

Post a client test report by a user.

Request Information

URI Parameters

None.

Body Parameters

The client test report data.

SaveClientTestReportDto
NameDescriptionTypeAdditional information
Video

boolean

None.

Mic

boolean

None.

Speaker

boolean

None.

AdvancedTestReportJson

string

None.

ConferenceId

integer

Required

Request Formats

application/json, text/json

Sample:
{
  "video": true,
  "mic": true,
  "speaker": true,
  "advancedTestReportJson": "sample string 1",
  "conferenceId": 2
}

application/xml, text/xml

Sample:
<SaveClientTestReportDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Falck.DTO.ClientTestReport">
  <AdvancedTestReportJson>sample string 1</AdvancedTestReportJson>
  <ConferenceId>2</ConferenceId>
  <Mic>true</Mic>
  <Speaker>true</Speaker>
  <Video>true</Video>
</SaveClientTestReportDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Posted client test report data.

SaveClientTestReportDto
NameDescriptionTypeAdditional information
Video

boolean

None.

Mic

boolean

None.

Speaker

boolean

None.

AdvancedTestReportJson

string

None.

ConferenceId

integer

Required

Response Formats

application/json, text/json

Sample:
{
  "video": true,
  "mic": true,
  "speaker": true,
  "advancedTestReportJson": "sample string 1",
  "conferenceId": 2
}

application/xml, text/xml

Sample:
<SaveClientTestReportDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Falck.DTO.ClientTestReport">
  <AdvancedTestReportJson>sample string 1</AdvancedTestReportJson>
  <ConferenceId>2</ConferenceId>
  <Mic>true</Mic>
  <Speaker>true</Speaker>
  <Video>true</Video>
</SaveClientTestReportDto>