Is it possible to implement Q&A functionality with the Zoom Video SDK?

Hello! I would like to know if there is a way to implement the Q&A functionality using the Zoom Video SDK.
I need a functionality where session participants can send questions to the hosts.

Below is more information about the versions and system I am using:
Video SDK version: 1.12.5
React version: 18
Next JS version: 14.2.2
OS: Windows 11
Browser: Google Chrome
Browser Version 129.0.6668.70 (Official Build) (64 bits)

Hey @dev_lxpead

Thanks for your feedback.

Based on my understanding of your requirements, we recommend that you use the command channel to send custom messages.

Here is a simple example:

const cmdClient = client.getCommandClient();

const QUERY_CMD = "QUERY";
const ANSWER_CMD = "ANSWER";

// User side
cmdClient.send(
  JSON.stringify({ cmd: QUERY_CMD, msg: "YOUR QUESTION" }),
  HOST_USER_ID
);

// host side
client.on("command-channel-message", (payload) => {
  const { text } = payload;
  const { cmd, msg } = JSON.parse(text);
  if (cmd === QUERY_CMD) {
    // handle question
    cmdClient.send(JSON.stringify({ cmd: ANSWER_CMD, msg: "ACTIONs" }));
  }
});

Thanks
Vic