# Trigger Notion manual sync

URL: /en/docs/api/v1/integrations/notion/sync/post
Last Updated: 2026-07-30T21:15:30.594Z

## Description
No description available.

## Available Actions
- Execute POST request
- View request parameters
- View response schema
- Get code examples
- Navigate to related topics
- View step-by-step instructions
- Get best practices

## Content
### POST /api/v1/integrations/notion/sync

**Trigger Notion manual sync**

Starts a manual Notion sync. Emits eventName `integrations.notion.manual_sync` and failureEventName `integrations.notion.manual_sync_failed`.

**Authentication:** Bearer token (`Authorization: Bearer <token>`)

**Request body** (`application/json`):

- `providerConfigKey` (string): Optional provider configuration key
- `connectionId` (string): Optional Notion connection ID override

**Responses:**

- `200` - Manual sync triggered successfully
  - `success` (boolean)
  - `data` (object)
    - `success` (boolean)
- `400` - Bad request
  - `error` (string, required)
  - `code` (string)
  - `data` (object)
- `401` - Unauthorized
- `403` - Forbidden - Admin role required
  - `error` (string, required)
  - `code` (string)
  - `data` (object)
- `404` - Notion integration not found
  - `error` (string, required)
  - `code` (string)
  - `data` (object)
- `500` - Internal server error

