Delete multiple articles

Delete multiple articles

Deletion is asynchronous: a 204 response means the deletion request was accepted and the matching articles are deleted in the background. To confirm completion, re-query GET /v2/knowledge/articles/ with the same filters until no articles match. A 404 is still returned when no articles match the provided filters.

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Query parameters

idlist of stringsOptional
Filter by article id
enabledlist of booleansOptional
Filter by enabled status
languagelist of stringsOptional
Filter by language
knowledge_source_idlist of stringsOptional
Filter by knowledge source
tag_idslist of stringsOptional
Filter by tag ids

Response

Article deletion accepted; matching articles are deleted in the background

Errors

400
Bad Request Error
401
Unauthorized Error
404
Not Found Error
429
Too Many Requests Error
500
Internal Server Error