## Sync connection `client.connections.import("notion" | "google-drive" | "onedrive" | 4 moreprovider, ConnectionImportParamsbody, RequestOptionsoptions?): ConnectionImportResponse` **post** `/v3/connections/{provider}/import` Initiate a manual sync of connections ### Parameters - `provider: "notion" | "google-drive" | "onedrive" | 4 more` - `"notion"` - `"google-drive"` - `"onedrive"` - `"gmail"` - `"github"` - `"web-crawler"` - `"s3"` - `body: ConnectionImportParams` - `containerTags?: Array` Optional comma-separated list of container tags to filter connections by ### Returns - `ConnectionImportResponse = string` ### Example ```typescript import Supermemory from 'supermemory'; const client = new Supermemory({ apiKey: process.env['SUPERMEMORY_API_KEY'], // This is the default and can be omitted }); const response = await client.connections.import('notion'); console.log(response); ```