Headers
Path Parameters
Body
application/json · string[]
The body is of type string[].
Response
Successful Response
import Morphik from 'morphik';
const client = new Morphik({
apiKey: 'My API Key',
});
const response = await client.cache.addDocs('name', { body: ['string'] });
console.log(response);{}Manually add documents to an existing cache.
import Morphik from 'morphik';
const client = new Morphik({
apiKey: 'My API Key',
});
const response = await client.cache.addDocs('name', { body: ['string'] });
console.log(response);{}The body is of type string[].
Successful Response
Was this page helpful?