GET api/VideoMeetingParticipants?GroupId={GroupId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
GroupId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of VideoParticipants
NameDescriptionTypeAdditional information
GroupId

integer

None.

GroupName

string

None.

ChatUserId

integer

None.

ChatUserType

integer

None.

Name

string

None.

CreatedBy

integer

None.

Response Formats

application/json, text/json, text/plain, text/html

Sample:
[
  {
    "groupId": 1,
    "groupName": "sample string 2",
    "chatUserId": 3,
    "chatUserType": 4,
    "name": "sample string 5",
    "createdBy": 6
  },
  {
    "groupId": 1,
    "groupName": "sample string 2",
    "chatUserId": 3,
    "chatUserType": 4,
    "name": "sample string 5",
    "createdBy": 6
  }
]

application/xml, text/xml

Sample:
<ArrayOfVideoParticipants xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CMMS_V2.Core.DataModel">
  <VideoParticipants>
    <ChatUserId>3</ChatUserId>
    <ChatUserType>4</ChatUserType>
    <CreatedBy>6</CreatedBy>
    <GroupId>1</GroupId>
    <GroupName>sample string 2</GroupName>
    <Name>sample string 5</Name>
  </VideoParticipants>
  <VideoParticipants>
    <ChatUserId>3</ChatUserId>
    <ChatUserType>4</ChatUserType>
    <CreatedBy>6</CreatedBy>
    <GroupId>1</GroupId>
    <GroupName>sample string 2</GroupName>
    <Name>sample string 5</Name>
  </VideoParticipants>
</ArrayOfVideoParticipants>

multipart/form-data

Sample:
<ArrayOfVideoParticipants xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CMMS_V2.Core.DataModel"><VideoParticipants><ChatUserId>3</ChatUserId><ChatUserType>4</ChatUserType><CreatedBy>6</CreatedBy><GroupId>1</GroupId><GroupName>sample string 2</GroupName><Name>sample string 5</Name></VideoParticipants><VideoParticipants><ChatUserId>3</ChatUserId><ChatUserType>4</ChatUserType><CreatedBy>6</CreatedBy><GroupId>1</GroupId><GroupName>sample string 2</GroupName><Name>sample string 5</Name></VideoParticipants></ArrayOfVideoParticipants>