How to delete a topic
To delete a topic, you must provide the couple category_id
and topic_id
.
You provide the list of these couples in the array bulk_topics
with following endpoint:
Command
curl -X POST 'https://api.talkwalker.com/api/v2/talkwalker/p/<project_id>/topics/delete?access_token=<access_token>'
Request
{
"bulk_topics": [
{
"id": "l0v16esw_1555byucibc74",
"category_id": "l0v16esw_1555byucibc75"
},
{
"id": "l0v1c44o_1555bys20chuu",
"category_id": "default"
}
]
}