For the complete documentation index, see llms.txt. This page is also available as Markdown.

Participant Join

To inform the room that participants have joined over the phone, you need to execute a POST request against the /rooms/:id/phone-participants/joined endpoint. After executing the call, then these participants will appear in the Participants panel inside the room.

Request

curl --request POST \
  --header "Content-Type: application/json" \
  --url https://api.digitalsamba.com/api/v1/rooms/45d125d8-bac9-43a5-a6a8-311a5433239d/phone-participants/joined \
  --user YOUR_TEAM_ID:YOUR_DEVELOPER_KEY \
  --data '[{"call_id": "53858671-c5e0-441a-9e33-e5d7f7f1861e","name": "John Smith", "caller_number": "+1234567890", "muted": true}, {"call_id": "074f23f1-6a8e-4856-8779-5cc888456d5c", "name": "David Travis", "caller_number": "+56345435", "muted": false}]'

Response (200 OK) - empty

Last updated