DocsAPI ReferenceGet current participants
GET/api/v1/bots/{bot_id}/participants

Returns the current list of participant names in the meeting. This list is maintained by the bot VM and is empty for bots that haven't yet joined.

Path Parameters

bot_idstringrequirede.g. "550e8400-e29b-41d4-a716-446655440000"

Bot UUID.

Headers

X-API-Keystringrequired

Your workspace API key.

Responses

200Participant list.
{
  "bot_id": "550e8400-e29b-41d4-a716-446655440000",
  "participants": [
    "Alice",
    "Bob",
    "Charlie"
  ]
}
404Bot not found in this workspace.