Suggestions

close search

Room Management

Create a room

URL: https://api.stringee.com/v1/room2/create

HTTP method: POST

Content-Type: application/json

Custom HTTP GET header: Name: X-STRINGEE-AUTH Value: JSON web token (JWT), see REST API Authentication

POST data (body):

{
  "name": "tient_test",
  "uniqueName": "tient_test"
}

Response:

{
    "r": 0,
    "msg": "Success"
}

List rooms

URL: https://api.stringee.com/v1/room2/list

HTTP method: GET

Content-Type: application/json

Custom HTTP GET header: Name: X-STRINGEE-AUTH Value: JSON web token (JWT), see REST API Authentication

Delete a room

URL: https://api.stringee.com/v1/room2/delete

HTTP method: PUT

Content-Type: application/json

Custom HTTP GET header: Name: X-STRINGEE-AUTH Value: JSON web token (JWT), see REST API Authentication

PUT data (body):

{
    "roomId": "room-vn-1-EKNUBSUJFW-1597685448625"
}

Response:

{
    "r": 0,
    "msg": "Delete success"
}