Zapier, Make & n8n
Connect Dark Obsidian to 5,000+ apps without writing code. Use webhooks as the trigger and the REST API as the action in any automation workflow.
Zapier Integration
Zapier connects Dark Obsidian to Google Sheets, Slack, Gmail, Mailchimp, HubSpot, and thousands of other apps. No server required.
Use Dark Obsidian as a Trigger (Webhooks)
Dark Obsidian fires webhooks when business events occur. Catch these in Zapier to trigger workflows.
Zapier gives you a unique URL like
https://hooks.zapier.com/hooks/catch/123456/abcdef/
URL: paste your Zapier webhook URL
Events: select which events to listen for
Zapier will show "We found a request!" - click Continue.
Use Dark Obsidian as an Action (REST API)
Call any Dark Obsidian endpoint from Zapier as an action step.
| Field | Value |
|---|---|
| URL | https://qatxonlxvtgxvqjgfxpl.supabase.co/functions/v1/api/orders |
| Payload Type | json |
| Headers → Authorization | Bearer do_live_YOUR_KEY |
| Headers → Content-Type | application/json |
// Example body for POST /orders
{
"customer": {
"name": "{{customer_name}}",
"email": "{{customer_email}}"
},
"items": [
{
"product_id": "YOUR_DARK_OBSIDIAN_PRODUCT_UUID",
"quantity": {{quantity}},
"unit_price": {{price}}
}
],
"payment_method": "card",
"send_invoice": true
}
Ready-Made Zap Examples
Make (Integromat)
Make has a visual drag-and-drop interface. Use the HTTP module to call any Dark Obsidian endpoint.
URL:
https://qatxonlxvtgxvqjgfxpl.supabase.co/functions/v1/api/ordersMethod: POST
Headers:
Authorization: Bearer do_live_YOUR_KEYBody type: Raw → JSON
n8n (Self-Hosted)
n8n is an open-source workflow automation tool you host yourself. Perfect if you need full data control.
Method: POST
URL:
https://qatxonlxvtgxvqjgfxpl.supabase.co/functions/v1/api/ordersAuthentication: Header Auth
Header Name:
Authorization · Value: Bearer do_live_YOUR_KEY
{{ $json.customer_email }} style expressions.n8n also supports calling Dark Obsidian's GET /analytics/dashboard endpoint to pull business stats into any downstream system (Power BI, Grafana, custom dashboards).