> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sequenzy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Sync Stripe Products

> Queue a sync of the Stripe product catalog

Queues a background sync of the Stripe product catalog into the products list. Requires an active Stripe integration.

## Request

```bash theme={null}
curl -X POST "https://api.sequenzy.com/api/v1/products/sync" \
  -H "Authorization: Bearer YOUR_API_KEY"
```

## Responses

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "jobId": "12345"
  }
  ```

  ```json 401 theme={null}
  {
    "success": false,
    "error": "Invalid or missing API key"
  }
  ```

  ```json 404 theme={null}
  {
    "success": false,
    "error": "No active Stripe integration found. Connect Stripe in the dashboard first."
  }
  ```
</ResponseExample>
