Skip to main content
DELETE
/
api
/
v4
/
{customerId}
/
index
/
{crawlerId}
/
documents
Single Delete
curl --request DELETE \
  --url https://api.cludo.com/api/v4/{customerId}/index/{crawlerId}/documents \
  --header 'Authorization: Basic <encoded-value>'
{
  "deleted": 1
}

Documentation Index

Fetch the complete documentation index at: https://cludo.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Basic authentication. Use your Customer ID as the username and API Key as the password. Example header: Authorization: Basic MTIzNDU2NzpteS1hcGkta2V5.

Path Parameters

customerId
integer
required

Your Cludo Customer ID (same as in MyCludo and Basic auth username).

crawlerId
integer
required

Crawler (content source) ID from MyCludo.

Query Parameters

documentId
string
required

Document primary key in the index—usually the same string you used as id when indexing (often the canonical URL).

Response

Document deleted successfully.

deleted
enum<integer>

1 when the document was removed, 0 if nothing matched.

Available options:
0,
1
Example:

1