Single Delete
Deletes one document from the index by its document ID, supplied as the required documentId query parameter.
The document ID is the same value you used as id when indexing the document. For most integrations this is the document’s canonical URL (e.g. https://example.com/products/widget-pro), not an internal numeric key.
When the document ID contains reserved characters — which a full URL typically does (?, &, =, #, spaces) — URL-encode it before adding it to the query string so it is parsed correctly (e.g. documentId=https%3A%2F%2Fexample.com%2Fproducts%2Fwidget-pro).
Authorizations
Basic authentication. Use your Customer ID as the username and API Key as the password. Example header: Authorization: Basic MTIzNDU2NzpteS1hcGkta2V5.
Path Parameters
Your Cludo Customer ID (same as in MyCludo and Basic auth username).
Crawler (content source) ID from MyCludo.
Query Parameters
The document ID to delete — the same string you used as id when indexing. For most integrations this is the document's canonical URL (e.g. https://example.com/products/widget-pro). Because the value is usually a full URL, it must be URL-encoded in the query string (e.g. documentId=https%3A%2F%2Fexample.com%2Fproducts%2Fwidget-pro).
Response
Document deleted successfully.
1 when the document was removed, 0 if nothing matched.
0, 1 1

