curl --request POST \
--url https://api.example.com/admin/topic/replace-and-delete \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"topicID": 123,
"replacementTopicID": 123
}
'{
"success": true,
"data": "<unknown>"
}Deletes and replaces a topic with another one, reassigning all concats under that new one.
curl --request POST \
--url https://api.example.com/admin/topic/replace-and-delete \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"topicID": 123,
"replacementTopicID": 123
}
'{
"success": true,
"data": "<unknown>"
}