Total Access Docs
Openapi

Get WhatsApp client status

Returns the WhatsApp connection status, QR code (if available), and slot information.

GET
/api/v1/whatsapp/client

Returns the WhatsApp connection status, QR code (if available), and slot information.

Authorization

AuthorizationBearer <token>

JWT access token for REST API endpoints (user-facing apps).

Authorization: Bearer <jwt_access_token>

Tokens expire after 15 minutes. Use the refresh token to obtain a new one.

In: header

Query Parameters

mode?string
Default"support"

Value in

  • "support"
  • "crm"
slot_id?string

Response Body

application/json

curl -X GET "https://example.com/api/v1/whatsapp/client"
{  "success": true,  "data": {    "status": "connected",    "qr_code": "string",    "phone_number": "string"  }}