The Avaya Spaces socket server will emit this socket event when a SUBSCRIBE_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
dtsidUnique indentifier of the device topic session. Reference only.string
sessionIdUnique identifier of the socket session. Reference only.string

Authorization

Sender of SUBSCRIBE_CHANNEL.

Example

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

Payload

{
    "channel": {
        "_id": "5f1051f0f3ed772f915e19ed",
        "type": "topic"
    },
    "dtsid": "1234",
    "sessionId": "8b59782f-07af-4a7f-e61b-69df5e803d2f"
}