Comment on page
Create voice channel visitor
URL | Requires Authentication | HTTP Method |
api/v1/livechat/visitor | Yes | POST |
{
"visitor": {
"token": "867ad6a09fc4af29f6f1f2a9cf1deaba"
}
}
curl --location --request POST 'localhost:3000/api/v1/livechat/visitor' \
--header 'Content-Type: application/json' \
--data-raw '{
"visitor": {
"token": "867ad6a09fc4af29f6f1f2a9cf1deaba"
}
}'
{
"visitor": {
"_id": "b3c7SMriL729R3J8w",
"username": "guest-2",
"status": "online",
"ts": "2022-06-29T06:05:01.392Z",
"_updatedAt": "2022-06-29T06:05:01.408Z",
"token": "867ad6a09fc4af29f6f1f2a9cf1deaba"
},
"success": true
}
Last modified 6mo ago