POST
/
rooms
/
{room_id}
/
members
curl --request POST \
  --url https://api.pagecall.com/v1/rooms/{room_id}/members \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "user_id": "external_user_102932",
  "type": "guest"
}'
{
  "member": {
    "id": "642d103ce95bc9dc22ef789f",
    "user_id": "external_user_102932",
    "room_id": "000585f36eed9e8fb6b655b4",
    "type": "guest"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

room_id
string
required

room id

Body

application/json

Response

200
application/json

Successful operation

The response is of type object.