0

I am creating a channel using channel api on app server using

channelId = channel.create_channel('mychannel')

now I want to destroy this channel. How can I do this ?

Sunil Garg
  • 14,608
  • 25
  • 132
  • 189

1 Answers1

1

Channel Token expires in 2 hours by default. You don't explicitly get to delete a channel from server side, however, from the javascript side you can easily call a close() method

varun
  • 4,522
  • 33
  • 28