GET clientTestReport/callersOf/{conferenceId}

Get client test reports in specified conference for all conference users except the calling user. The user is not authorized to request data from a conference he is not included into.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
conferenceId

The conference ID.

integer

Required

Body Parameters

None.

Response Information

Resource Description

Client test reports data of other callers in the conference.

Collection of ReadClientTestReportRestrictedDto
NameDescriptionTypeAdditional information
AdvancedTestReportJson

string

None.

Id

integer

None.

UserId

globally unique identifier

None.

AccessToken

string

None.

ModifiedOn

date

None.

Video

boolean

None.

Mic

boolean

None.

Speaker

boolean

None.

ConferenceId

integer

Required

Response Formats

application/json, text/json

Sample:
[
  {
    "advancedTestReportJson": null,
    "id": 2,
    "userId": "db416ce8-e575-4e14-a637-07a3ee617e17",
    "accessToken": "sample string 4",
    "modifiedOn": "2026-05-22T04:02:52.2499423+02:00",
    "video": true,
    "mic": true,
    "speaker": true,
    "conferenceId": 6
  },
  {
    "advancedTestReportJson": null,
    "id": 2,
    "userId": "db416ce8-e575-4e14-a637-07a3ee617e17",
    "accessToken": "sample string 4",
    "modifiedOn": "2026-05-22T04:02:52.2499423+02:00",
    "video": true,
    "mic": true,
    "speaker": true,
    "conferenceId": 6
  }
]

application/xml, text/xml

Sample:
<ArrayOfReadClientTestReportRestrictedDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Falck.DTO.ClientTestReport">
  <ReadClientTestReportRestrictedDto>
    <AdvancedTestReportJson i:nil="true" />
    <ConferenceId>6</ConferenceId>
    <Mic>true</Mic>
    <Speaker>true</Speaker>
    <Video>true</Video>
    <AccessToken>sample string 4</AccessToken>
    <Id>2</Id>
    <ModifiedOn>2026-05-22T04:02:52.2499423+02:00</ModifiedOn>
    <UserId>db416ce8-e575-4e14-a637-07a3ee617e17</UserId>
    <AdvancedTestReportJson i:nil="true" />
  </ReadClientTestReportRestrictedDto>
  <ReadClientTestReportRestrictedDto>
    <AdvancedTestReportJson i:nil="true" />
    <ConferenceId>6</ConferenceId>
    <Mic>true</Mic>
    <Speaker>true</Speaker>
    <Video>true</Video>
    <AccessToken>sample string 4</AccessToken>
    <Id>2</Id>
    <ModifiedOn>2026-05-22T04:02:52.2499423+02:00</ModifiedOn>
    <UserId>db416ce8-e575-4e14-a637-07a3ee617e17</UserId>
    <AdvancedTestReportJson i:nil="true" />
  </ReadClientTestReportRestrictedDto>
</ArrayOfReadClientTestReportRestrictedDto>