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

# Delete Audience Sync

> Remove an audience sync mapping

Remove an audience sync. The Meta audience itself is kept - running ads referencing it are not disrupted. Only future syncs stop.

## Request

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

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

## Responses

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

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

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