Get Conference Members Data
getconferencemembersdata (Commands) |
Type | Corrade progressive command |
Command | getconferencemembersdata |
Description | The getconferencemembersdata command can be used to query data on multiple avatars that are part of a conference. |
Permissions | talk |
Parameters | group , password , session , data |
Last Changes | Release 9.111 - added. |
The getconferencemembersdata
command can be used to query data on multiple avatars that are part of a conference. by querying the ChatSessionMember structure.
Command | Required Parameters | Required Corrade Permissions | Required Group Abilities | Example |
getconferencemembersdata | group , password , session , data | talk | | llInstantMessage(CORRADE,
wasKeyValueEncode(
[
// Determine which avatars have their
// voice muted in a conference.
"command", "getconferencememberdata",
"group", wasURLEscape(GROUP),
"password", wasURLEscape(PASSWORD),
// The session UUID of the conference.
"session", "fc937697-765c-4cb2-b2ad-d1d95a3410af",
"data", wasListToCSV(
[
"AvatarKey",
"MuteVoice"
]
),
"callback", wasURLEscape(URL)
]
)
);
|