How Can I view Topics on Novu?
I implemented Topic CRUD but I can't view the new topics created on the platform.
Is it possible to view new topics with added subscribers?
Is it possible to view new topics with added subscribers?
public object AddSubscribers(string topicKey, List<string> emails)
{
var topic = novu.Topic.Get(topicKey).Result.Data;
var subscribers = new TopicSubscriberCreateData(emails);
return novu.Topic.AddSubscriber(topicKey, subscribers);
}
}


public object AddSubscribers(string topicKey, List<string> emails)
{
var topic = novu.Topic.Get(topicKey).Result.Data;
var subscribers = new TopicSubscriberCreateData(emails);
return novu.Topic.AddSubscriber(topicKey, subscribers);
}
}