Quickstart
Get up and running with Expedify CRM & Marketing Automation in 5 minutes.
Overview
Expedify is an enterprise CRM and marketing automation platform with AI-powered workflows. This guide will help you:
- Create your account
- Add your first contact
- Build a simple workflow
- Execute an automation
Prerequisites
- An Expedify account (Sign up here)
- Basic understanding of CRM concepts
Step 1: Create Your Account
- Visit app.expedify.ai/signup
- Enter your email and create a password
- Verify your email address
- Complete the onboarding wizard
Step 2: Add Your First Contact
Via the UI
- Navigate to Customers → Contacts
- Click + Add Contact
- Fill in the required fields:
- Name: Contact's full name
- Email: Contact's email address
- Click Save
Via API
curl -X POST https://api.expedify.ai/api/contacts \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "Jane Smith",
"email": "jane@example.com"
}'
Step 3: Build Your First Workflow
- Navigate to Automation → Workflows
- Click + New Workflow
- Add a Click Trigger node
- Add an LLM Node to generate a summary
- Add a CRM Update node to save the result
- Click Save
Step 4: Execute the Workflow
curl -X POST https://api.expedify.ai/api/triggers/execute \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"trigger_uuid": "YOUR_TRIGGER_UUID",
"variables": {
"contact_id": "CONTACT_ID"
}
}'
Next Steps
- Core Concepts - Understand Expedify's architecture
- Build Your First Workflow - Detailed workflow tutorial
- API Authentication - Set up API access
Need Help?
- Documentation: You're here!
- Support: support@expedify.ai
- Status: status.expedify.ai