Welcome to PrimeMsg Reseller Console

Manage your WhatsApp API connections, configure chatbot auto-responders, and monitor integration stats.

Your Active WhatsApp Instances

Billing & Subscription

Manage your reseller license, invoices, and messaging limits.

Active Account

Plan Status

Current Plan: Loading...
Trial Expiration Date: Loading...
Today's message usage: 0 / 50 messages

Payment Methods

Reseller subscription fees are processed securely. Update your billing configurations below.

Need help with payments? Contact support.

Primary Account

Disconnected

Message Statistics

Sent: 0
Received: 0
Pending: 0
Failed: 0

Device Authentication

Device Disconnected

Your virtual WhatsApp Web instance is currently offline. You must scan the QR code to authenticate and link your account.

Message timing

Send Test Message

Send text, images, or documents through your WhatsApp session.

Include country code, no +, spaces, or leading zeros.

Danger zone

These actions affect the running instance and can't be undone

Message Delivery Log

Showing last 50 entries Note: Message and media logs are kept for 60 days only.
Timestamp Direction Phone / Recipient Type Message Status
No records found.

Welcome Auto-Response

Disabled

This message is sent automatically to any customer who contacts your WhatsApp number if they haven't written to you within the cooldown period.

Prevents spam. The chatbot will wait this many minutes before sending the welcome message to the same user again.

Add Command Rule

Triggers are case-insensitive and exact match.

Active Commands

Trigger Response Text Delete
No custom commands registered.

Developer REST API Integration

POST /api/instances/ID/send/chat?token=TOKEN
Parameter Type Status Description
to string Required Recipient phone with country code e.g. "923219668717"
body string Required Text message content to send.
curl -X POST \
  "https://primemsg.net/api/instances/ID/send/chat?token=TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"to": "923219668717", "body": "Hello! 🚀"}'
<?php
$ch = curl_init("https://primemsg.net/api/instances/ID/send/chat?token=TOKEN");
curl_setopt_array($ch, [
  CURLOPT_POST => true,
  CURLOPT_POSTFIELDS => json_encode(['to' => '923219668717', 'body' => 'Hello! 🚀']),
  CURLOPT_HTTPHEADER => ['Content-Type: application/json'],
  CURLOPT_RETURNTRANSFER => true
]);
echo curl_exec($ch); curl_close($ch);
?>
fetch('http://localhost:3000/api/instances/ID/send/chat?token=TOKEN', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  body: JSON.stringify({ to: '923219668717', body: 'Hello! 🚀' })
}).then(r => r.json()).then(console.log);

Subscription Details

Current Plan: Loading...
Trial Expires: Loading...
Today's API Usage: 0 / 50 msgs

Webhook Settings