Skip to main content
Returns a list of WhatsApp Business senders (phone numbers) configured for your account. Use the sender id when sending messages.

Endpoint

GET /user/whatsapp/senders

Query parameters

status
string
default:"online"
Filter senders by status. Use all to return senders regardless of status. Default: online.

Response

data
array
Array of WhatsApp sender objects.

Example

curl -X GET "https://portal.intellixent.ai/api/user/whatsapp/senders" \
  -H "Authorization: Bearer YOUR_API_KEY"
200 Response
{
  "data": [
    {
      "id": 12,
      "phone_number": "+14155551234",
      "display_name": "Acme Corp Support",
      "status": "online",
      "quality_rating": "GREEN",
      "messaging_limit": 10000,
      "messaging_limit_formatted": "10,000 / 24hr"
    },
    {
      "id": 15,
      "phone_number": "+442071234567",
      "display_name": "Acme Corp Sales",
      "status": "online",
      "quality_rating": "GREEN",
      "messaging_limit": null,
      "messaging_limit_formatted": "Unlimited"
    }
  ]
}
Only online senders are returned by default. Use ?status=all to include offline senders. Sender status is synced with Meta every 5 minutes.