ClickHelp User Manual

[API] Delete Several Topics

Deletes multiple topics from a project.

DEL projects/{id}/articles 

Authentication

Insert appropriate auth snippet here

Request Parameters

Path params
id
string
The ID of the project or publication to delete topics from.
Body params
ids
array of strings
An array of strings containing topic ids.

Samples

Request sample
Bash (Unix Shell)
curl --location -g --request DELETE 'https://{portal-url}/api/v1/projects/project-deep-space-exploration/articles' ^
--data-raw '{
"ids": [
"new-topic",
"new-topic-8"
]
}'