Skip to main content
POST
/
api
/
run
/
meetings
/
queries
/
listMeetingParticipants
listMeetingParticipants
curl --request POST \
  --url https://connvo-dev.convex.cloud/api/run/meetings/queries/listMeetingParticipants \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "args": {
    "meetingId": "meeting_123example"
  }
}'
{
  "status": "success",
  "errorMessage": "",
  "errorData": {},
  "value": [
    {
      "_id": "participant_123example",
      "_creationTime": 1704063600000,
      "meetingId": "meeting_123example",
      "userId": "user_123example",
      "role": "host",
      "presence": "joined",
      "joinedAt": 1704067200000,
      "createdAt": 1704063600000,
      "user": {
        "_id": "user_123example",
        "displayName": "Alice Johnson",
        "avatarUrl": "https://example.com/avatars/alice.jpg"
      },
      "webrtcConnected": true,
      "webrtcSessionCount": 1
    },
    {
      "_id": "participant_456example",
      "_creationTime": 1704063600000,
      "meetingId": "meeting_123example",
      "userId": "user_456example",
      "role": "participant",
      "presence": "joined",
      "joinedAt": 1704067300000,
      "createdAt": 1704063600000,
      "user": {
        "_id": "user_456example",
        "displayName": "Bob Smith",
        "avatarUrl": "https://example.com/avatars/bob.jpg"
      },
      "webrtcConnected": true,
      "webrtcSessionCount": 1
    }
  ]
}

Authorizations

Authorization
string
header
required

Standard user authentication token issued via WorkOS. Provide as Authorization: Bearer <user-token>.

Body

application/json
args
object
required

Response

Convex executed your request and returned a result

status
enum<string>
required
Available options:
success,
error
errorMessage
string
errorData
object
value
object[]