Revenue — Last 30 Days
🏪 Local Pickup Deposits
Create a 5% non-refundable deposit for cash pickup sales to prevent no-shows.
| Date | Buyer | Item | Total | Deposit | Status | Action |
|---|
| Image | Title | Type | Price | Qty | Status | |
|---|---|---|---|---|---|---|
| Loading... | ||||||
| Date | Service | Name | Status | ||
|---|---|---|---|---|---|
| No inquiries yet | |||||
Weekly Revenue — Last 12 Weeks
Invoice Funnel
Comment-to-Pay Webhook
When a customer comments on your Facebook post, your automation tool sends their info here and gets back a payment link to DM them.
1. Create an automation triggered by Facebook comment keywords (e.g. "BUY", "WANT", "ORDER").
2. Add a step to collect the buyer's email address.
3. Add an External Request (POST) to the Webhook URL above with JSON body (see example below).
4. Use the returned
paymentMessage to send a DM to the buyer with their payment link.JSON Body Example:
{
"apiKey": "YOUR_API_KEY",
"buyerName": "Jane Doe",
"buyerEmail": "[email protected]",
"messengerUserId": "12345",
"productTitle": "Lavender Body Butter",
"price": 14.99,
"description": "Optional notes"
}
Or with multiple items:
{
"apiKey": "YOUR_API_KEY",
"buyerEmail": "[email protected]",
"items": [
{"title": "Body Butter", "price": 14.99, "quantity": 1},
{"title": "Lip Balm", "price": 5.99, "quantity": 2}
]
}
Response: { ok, invoiceId, invoiceUrl, total, paymentMessage } — use paymentMessage as the DM text.
Test Comment-to-Pay
💳 Stripe Connect
Connect your Stripe account to receive payouts from sales.
🌱 Regenerative Agriculture Donation
Percentage of each sale donated to Mad Agriculture (1-10%).
📦 Shipping Provider (Shippo)
Connect your Shippo account for discounted shipping labels. Free to sign up — you only pay per label.
Ship From Address
Deposit Settings
Hours before a pending deposit is auto-forfeited
Facebook Auto-Sync
Connect your automation tool to auto-create listings from your Facebook posts.
How Comment-to-Pay Works
Someone comments on your Facebook post → ManyChat auto-DMs them a payment link → they pay → you get paid. Here's how to set it up:
- Sign up at manychat.com and connect your Facebook Page
- Create a new Flow with trigger: Comments on a Post
- Add an action step: External Request → POST
- Paste the Webhook URL from above
- Set Header:
Content-Type: application/json - Set Body to JSON (copy & edit below):
{
"apiKey": "PASTE_YOUR_API_KEY_FROM_ABOVE",
"buyerName": "{{first_name}}",
"buyerEmail": "{{email}}",
"productTitle": "Your item name",
"price": 29.99
}
{{first_name}} and {{email}} are ManyChat variables — they auto-fill with the buyer's info from Messenger.
Don't use ManyChat? You can skip this — just create invoices manually from the Invoices tab and send payment links directly.