addTopic

Add a topic to the selected conversations.

🚧

addTopic has been deprecated. Please use addLink instead.

📘

This function is only available on context of types singleConversation and multiConversations

function addTopic(externalUrl: string, name?: string, cancelToken?: CancelToken): Promise<Topic>;

Front deduplicates Topic by their type and URL. If a topic already exists, the selected conversations will be added to the existing one.

Parameters

ParameterTypeDescription
externalUrlStringURL of the topic.
nameString (optional)Human readable name.
cancelTokenCancelToken (optional)Token to cancel the request.

Return value

The function returns a promise that resolves with the Topic added.