I am using Getstream.io nodejs module.
I am creating feeds at run time and want to know if there is a way to delete a feed through code?.
I see in the code base that there is a delete interface but when I looked in to RESTFul API documentation, I did not find any end point to delete a feed.
But when I look at Ruby documentation, I see that there is way to delete a feed.
Please let me know how can I achieve deleting a feed in getstream.io from nodejs
The delete operation is currently not supported by the nodejs client library. There is an api endpoint that supports this operation: feed, but the delete operation is not documented on the REST docs. You can delete feeds from the databrowser on the getsream.io dashboard.
I was able to delete a feed using nodejs. It is just a hack but it will work.
But remember that deleting a feed means, it deletes all the activities from the feed. The feed still exists and can be seen through databrowser. The follow/following relationship still exists.