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?
10 Replies
@Larissa Palombo
Thanks for reaching out.
Currently topic management is not added in UI.
It is in our roadmap
Can you help us by adding upvote on this?
https://roadmap.novu.co/roadmap/1fe3ec94-2ba5-4f27-8b27-7eeb322c87b5
Novu roadmap | Productlane
Find out what the Novu team is working on and leave your feedback - powered by Productlane
@Pawan Jain Can you see if the C# code is correct to add new subscribers to the topic please?
When the topic returns, it was create correctly , but AddSubscriber return Subscriber {string[0]}
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);
}
}
@todd ☝️
One question: to add a subscriber to a topic, must the subscriber first be created on this endpoint? post /v1/subscribers
Is it not possible to add an unregistered subscriber to a topic?
Yes subscriber need to be created first
Would you like to share the usecase on creating subscriber on the fly with topic creation or subscriber addition
I found the problem. I wasn't adding the subscriber before adding it to the topic.
@Larissa Palombo, you just advanced to level 1!