Last updated 8 months ago
#139: Update content
Change request updated 8 months ago
Save a new Memory document with a name and content for Memory.
Document saved successfully
const response = await fetch('https://api.rememberizer.ai/api/v1/documents/memorize/', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "name": "text", "content": "text" }), }); const data = await response.json();