Javascript
import Supermemory from 'supermemory'; const client = new Supermemory({ apiKey: 'My API Key', }); const response = await client.connections.listDocuments('notion'); console.log(response);
[ { "createdAt": "<string>", "id": "<string>", "status": "<string>", "summary": "<string>", "title": "<string>", "type": "<string>", "updatedAt": "<string>" } ]
List documents indexed for a provider and container tags
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
notion
google-drive
onedrive
List of documents
The response is of type object[].
object[]
Was this page helpful?