Roomie Call API


Overview

Roomie call api enables you to create realtime communication platform with very few setup. Before we get into details make sure you have read the basic about the Roomie API

Getting the token

Inorder to use roomie realtime communication you will need the call token. Here is an example to get the call token

curl --location --request GET 'https://rmeeting.roomietech.com/v1/api/rcall-token' \
--header 'Authorization: <ACCESS_TOKEN>' \

The response should look something like this

{
    "Code": 1,
    "Data": {
        "token": "CALL_TOKEN"
    }
}

Using the call token

A typical use case of call token can be making a call. Inorder to make call use the following URL scheme.

https://rcall.roomietech.com/?user_id=<PARTICIPANT_NAME>&code=<CALL_TOKEN>