The Avaya Spaces socket server will emit this socket event when a UNSUBSCRIBE_CHANNEL socket event was processed successfully.

Payload Parameters

NameDescriptionJSON type
channelSpace details.
  • type: (string) type of channel to subscribe to. Only option is: 'topic'
  • _id: (string) unique identifier of the space
Object

Authorization

Sender of UNSUBSCRIBE_CHANNEL.

Example

socketConnection.on('CHANNEL_UNSUBSCRIBED', callback(payload));

Payload

{
    "channel": {
        "_id": "5f1051f0f3ed772f915e19ed",
        "type": "topic"
    }
}