Skip to main content
GET
/
bots
/
{bot_id}
/
get_participants
Get Bot Participants
curl --request GET \
  --url https://api.meestream.ai/v1/bots/{bot_id}/get_participants \
  --header 'Authorization: <api-key>'
[
  {
    "deviceId": "<string>",
    "fullName": "<string>",
    "profilePicture": "<string>",
    "status": 123,
    "streamIds": [
      "<string>"
    ]
  }
]

Authorizations

Authorization
string
header
required

All API endpoints are authenticated using API Keys. The key should be included in the 'Authorization' header, prefixed with 'Token '. Example: 'Authorization: Token YOUR_API_KEY'.

Path Parameters

bot_id
string
required

The unique identifier of the bot.

Response

200 - application/json

Returns the participants for the bot.

deviceId
string

Unique device identifier for the participant

fullName
string

Full name of the participant

profilePicture
string

URL to the participant's profile picture

status
integer

Status code of the participant

streamIds
string[]

Array of stream identifiers for the participant