> ## 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.

# Run Audience Sync

> Trigger an immediate sync run outside the schedule

Trigger an immediate upload of the segment's active subscribers to the Meta audience, outside the regular schedule. The sync must be active (not paused).

## Request

<ParamField path="syncId" type="string" required>
  Audience sync ID
</ParamField>

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

## Responses

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

  ```json 400 theme={null}
  {
    "error": "Resume the sync before running it"
  }
  ```

  ```json 404 theme={null}
  {
    "error": "Audience sync not found"
  }
  ```

  ```json 401 theme={null}
  {
    "error": "Unauthorized"
  }
  ```
</ResponseExample>
