User Registration
In order to start testing your integration, first you have to create a few users. The REST API call to add users to the Company is POST /user/create.
To view a sample API example for creating a user, see Create User.
Following is an example of a request:
{
"role" : "plus",
"can_video": "1",
"language": "en"
}
The response will include the id of the generated user. You can also create a user with a customized user id – provided that it is unique in your company – by adding a parameter “id” to the request payload.
Note:
Repeat this step for every user you want to add.
Keep in mind that for a room to be put in place you need at least two users and at least one of them must have "plus" role.
Updated about 2 months ago