WasenderApi - Low Cost WhatsApp API for Developers Webhook: Session Status - API Documentation - WasenderApi - Low Cost WhatsApp API for Developers
WasenderApi API

API Documentation

WasenderApi WhatsApp API

Webhook: Session Status

Webhooks

Event triggered when the connection status of your WhatsApp session changes.

Webhook Event: session.status

Triggered when the connection status of your WhatsApp session changes (e.g., connected, disconnected, need_scan). The payload includes the new status and session ID.

See the code example below for the typical payload structure.

Code Examples

{
  "event": "session.status",
  "timestamp": 1633456789,
  "data": {
    "status": "connected", // or "disconnected", "need_scan"
    "session_id": "session-id-123"
  }
}