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

# Webhooks

> Real-time notifications for order status updates

## Overview

<Info>
  **Coming Soon**: Webhook support is currently in development and will be
  available in Q2 2026.
</Info>

Webhooks will provide real-time notifications for order status changes, eliminating the need for continuous polling and reducing API calls.

## Current Alternative: Polling

Until webhooks are available, use efficient polling:

```javascript theme={null}
// See Polling Strategies guide for optimal patterns
await pollStatus(ref, {
  maxAttempts: 60,
  interval: 5000,
  exponentialBackoff: true,
});
```

## Related

<CardGroup cols={2}>
  <Card title="Polling Strategies" href="polling-strategies">
    Current status tracking method
  </Card>

  <Card title="Security Best Practices" href="security-best-practices">
    Secure your integration
  </Card>
</CardGroup>
