Room Deleted

This notification is sent when a room is deleted.

Sent JSON includes the following:

JSON Key

Type

Description

roomId

Number

Room ID

node

Object

Sender node information

  • uid

String

Node UID

  • host

String

Host

  • port

Number

Port

  • protocol

String

Protocol

  • type

Number

Node type

  • properties

Object

Custom property map containing any key-value pairs

  • internalProperties

Object

Custom property map containing any key-value pairs for inter-server processing

Example JSON

{
    "roomId": 1,
    "node": {
        "uid": "[ServerUID:1]",
        "host": "192.0.2.100",
        "port": 9123,
        "protocol": "TCP",
        "type": 1,
        "properties": {},
        "internalProperties": {}
    }
}