curl -X POST https://api.avoca.ai/v1/outbound/live-chat/message \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "X-Workspace-ID: YOUR_WORKSPACE_ID" \
-H "Content-Type: application/json" \
-d '{
"visitor_id": "visitor_abc123",
"message": "Hi! I noticed you are looking at our AC repair services. We have same-day appointments available. Can I help answer any questions?",
"trigger": {
"type": "page_visit",
"page_url": "https://example.com/services/ac-repair",
"time_on_page": 45
},
"personalization": {
"current_interest": "AC Repair"
},
"quick_replies": [
{
"text": "Get a Quote",
"value": "quote_request",
"action": "quote"
},
{
"text": "Schedule Service",
"value": "schedule_service",
"action": "schedule"
},
{
"text": "Call Now",
"value": "call_request",
"action": "call"
}
]
}'