## List documents **post** `/v3/connections/{provider}/documents` List documents indexed for a provider and container tags ### Path Parameters - `provider: "notion" or "google-drive" or "onedrive" or 4 more` - `"notion"` - `"google-drive"` - `"onedrive"` - `"gmail"` - `"github"` - `"web-crawler"` - `"s3"` ### Body Parameters - `containerTags: optional array of string` Optional comma-separated list of container tags to filter documents by ### Returns - `id: string` - `createdAt: string` - `status: string` - `summary: string` - `title: string` - `type: string` - `updatedAt: string` ### Example ```http curl https://api.supermemory.ai/v3/connections/$PROVIDER/documents \ -H 'Content-Type: application/json' \ -H "Authorization: Bearer $SUPERMEMORY_API_KEY" \ -d '{ "containerTags": [ "user_123", "project_123" ] }' ``` #### Response ```json [ { "id": "id", "createdAt": "createdAt", "status": "status", "summary": "summary", "title": "title", "type": "type", "updatedAt": "updatedAt" } ] ```