Wellness Forever — AI Calling Agent v3.0

Shopify❌ Not configured
Scheduler❌ Off | next: N/A

Navigation

Architecture Flow

  1. POST /shopify/sync — pull customers from Shopify, classify by type
  2. POST /shopify/trigger-pending — trigger calls for all pending customers
  3. OR: POST /api/trigger-calls — manual call trigger with custom data
  4. Webhooks: POST /shopify/webhook — real-time abandoned cart triggers
  5. Scheduler auto-runs steps 1+2 every 30 minutes if enabled

Quick Start — Manual Trigger

POST /api/trigger-calls
Content-Type: application/json

{
  "customers": [
    {
      "name": "Rahul Sharma",
      "phone": "+919876543210",
      "tag": "abandoned_cart",
      "product_details": [
        {"product_name": "Vitamin D3", "price": 299.0, "quantity": 1}
      ]
    }
  ]
}

Tags: abandoned_cart | reorder | win_back | custom