WAsendr's webhooks enable seamless automation with GoHighLevel (GHL) through platforms like Zapier, Make, n8n, and Pabbly Connect. These webhooks allow you to automate tasks such as sending WhatsApp messages, creating contacts, scheduling meetings, and retrieving calendar availability in GHL without needing a GHL access token—WAsendr handles authentication for you, ensuring your automations run 24/7.
Send WhatsApp Messages to GHL Contact
Create a New GHL Contact
Schedule a Meeting in GHL Calendar
Get Free Time Slots on GHL Calendar
Below are the API endpoints for integrating WAsendr with GHL via n8n. No GHL access token is required, as WAsendr manages authentication.
curl -X POST "https://panel.wasndr.com/n8n/sendTextMessage" \
-H "Content-Type: application/json" \
-d '{
"contactId": "contact_123456789",
"message": "Hello! This is a test message from n8n workflow.",
"locationId": "location_123456789",
}'
curl -X POST "https://panel.wasndr.com/n8n/createContact" \
-H "Content-Type: application/json" \
-d '{
"locationId": "location_123456789",
"firstName": "John",
"lastName": "Doe",
"email": "john.doe@example.com",
"phone": "+15551234567",
"tags": ["n8n", "automation", "new-lead"],
"customFields": [
{
"id": "custom_field_id",
"value": "Custom field value"
}
]
}'
curl -X POST "https://panel.wasndr.com/n8n/scheduleMeeting" \
-H "Content-Type: application/json" \
-d '{
"locationId": "location_123456789",
"calendarId": "calendar_123456789",
"contactId": "contact_123456789",
"startTime": "2025-06-01T15:00:00Z",
"endTime": "2025-06-01T16:00:00Z",
"title": "Strategy Call with John",
"description": "Discuss marketing automation strategy and next steps."
}'
calendarId from your GHL Calendar dashboard and add it to your workflow variables to ensure the AI agent or workflow books appointments in the correct calendar.GET https://panel.wasendr.com/n8n/getFreeSlots curl -X GET "https://panel.wasndr.com/n8n/getFreeSlots" \
-H "Content-Type: application/json" \
-d '{
"locationId": "location_123456789",
"calendarId": "calendar_123456789",
"startTime": "2025-06-01T15:00:00Z",
"endTime": "2025-06-01T16:00:00Z",
}'calendarId from your GHL Calendar dashboard in your workflow variables to query the correct calendar.These endpoints work seamlessly with Zapier, Make, n8n, and Pabbly Connect to build powerful workflows:
Since WAsendr handles GHL authentication, you don’t need to manage a GHL access token. However, ensure you:
locationId or calendarId in your automation platform’s secure storage (e.g., n8n’s Credentials, Zapier’s Custom Fields, Make’s Data Stores, or Pabbly Connect’s Secure Parameters).locationId, calendarId, and contactId in your GHL dashboard to avoid errors in your workflows.