π Live Location Tracking
Live Location Map
π’ Green markers show active worker locations
π΅ Blue markers show recent (inactive) worker locations
Click on any marker to see worker details and location info
Loading map statistics...
π Active Locations
Click "Refresh Locations" to load active worker locations...
π· Workers
Click "View Workers" to load worker list...
π Quick Stats
Click "View Workers" to load statistics...
π Detailed Statistics
Click "Refresh Stats" to load location statistics...
π₯ Group Management & Monitoring
Click "Refresh" to load groups...
βΉοΈ Group Info
Select a group to view details...
π₯ Members
Select a group to view members...
π Group Stats
Select a group to view statistics...
π‘ Tips
Group JID Format:
β’ Use format: 1234567890@g.us
β’ Get from WhatsApp Web inspector
House Categories:
β’ Used for organizing groups
β’ Can filter groups by category
Tags:
β’ Separate with commas
β’ Used for search and filtering
π― Quick Actions
π API Usage Examples
Send Text Message
POST /api/send-message
Content-Type: application/json
{
"apiKey": "YOUR_API_KEY",
"phone": "+521234567890",
"message": "Hello World!"
}
Send Media Message
POST /api/send-media
Content-Type: application/json
{
"apiKey": "YOUR_API_KEY",
"phone": "+521234567890",
"caption": "Check this out!",
"mediaUrl": "https://example.com/image.jpg"
}
Send Location Message
POST /api/send-location
Content-Type: application/json
{
"apiKey": "YOUR_API_KEY",
"phone": "+521234567890",
"latitude": 19.4326,
"longitude": -99.1332,
"description": "Mexico City"
}
cURL Examples
# Send text message
curl -X POST http://localhost:3000/api/send-message \
-H "Content-Type: application/json" \
-d '{"apiKey":"YOUR_API_KEY","phone":"+521234567890","message":"Hello!"}'
# Send media
curl -X POST http://localhost:3000/api/send-media \
-H "Content-Type: application/json" \
-d '{"apiKey":"YOUR_API_KEY","phone":"+521234567890","caption":"Image","mediaUrl":"https://example.com/pic.jpg"}'
# Send location
curl -X POST http://localhost:3000/api/send-location \
-H "Content-Type: application/json" \
-d '{"apiKey":"YOUR_API_KEY","phone":"+521234567890","latitude":19.4326,"longitude":-99.1332,"description":"Mexico City"}'