Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Remove a topic by ID.
func (s *TopicsSvcImpl) Remove(topicId string) (*RemoveTopicResponse, error) func (s *TopicsSvcImpl) RemoveWithContext(ctx context.Context, topicId string) (*RemoveTopicResponse, error)
"topic"
client := resend.NewClient("re_123456789") response, err := client.Topics.Remove("topic_abc123") if err != nil { panic(err) } if response.Deleted { fmt.Println("Topic deleted successfully") }