Skip to main content

deleteDocument.php

This is an example of using the platform via REST. For more sample code, including any dependencies this file has, please have a look at our GitHub examples repository. This file can be found in that repo at php/rest/deleteDocument.php

php/rest/deleteDocument.php
<?php
/**
* Deletes a document in Vectara platform using HTTP/REST.
*
* @auth_url Authentication URL for this customer.
* @client_id App client ID.
* @client_secret App client secret.
* @corpus_id Corpus ID of the corpus to index to.
* @customer_id Unique customer ID in Vectara platform.
* @indexing_endpoint The endpoint of Vectara Admin server.
* @document_id ID of the document to be deleted.
*
* Returns The result of index REST call.
*/
include 'getJwtToken.php';

$url = 'https://' . $_POST['indexing_endpoint'] . '/v1/delete-doc';
$customer_id = $_POST['customer_id'];
$corpus_id = $_POST['corpus_id'];
$document_id = $_POST['document_id'];

$jwt_token = get_token(
$_POST['auth_url'],
$_POST['client_id'],
$_POST['client_secret']
);
if (empty($jwt_token)) {
echo 'Could not obtain JWT token. Please check your credentials.';
return;
}

$delete_request = [
'customer_id' => $customer_id,
'corpus_id' => $corpus_id,
'document_id' => $document_id,
];

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'Content-Type:application/json',
'Authorization: Bearer ' . $jwt_token,
'customer-id: ' . strval($customer_id),
]);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($delete_request));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

//execute post
$result = curl_exec($ch);
curl_close($ch);

echo $result;
?>