Zapier

Integration

Zapier

Plandalf integrates with Zapier as a marketing, sdk platform.

What it does

Product surfaces

Where Zapier fits in the buying workflow

Integrations work best when the checkout surface, payment state, invoice record, and post-purchase automation all point at the same commercial object. These product screens show the Plandalf controls that should be configured before Zapier receives checkout, payment, tax, or workflow context.

The Numi offer editor showing layout, product, theme, automation, invoice, and settings controls.
The Numi checkout elements palette showing content, interactive, and selling blocks.
The Numi offer editor automation tab showing sequence controls beside the checkout canvas.

Purchase events can start follow-up

Zapier should fit into the work after checkout: fulfilment, records, CRM updates, support context, webhooks, and sequences.

The Numi offer editor showing hosted checkout mode controls.

Builder paths

Stack guides that use Zapier

Use these stack guides when a builder needs the whole path: sales surface, Plandalf offer, payment handoff, automation, fulfilment, records, and downstream integrations.

Overview

Zapier connects thousands of apps via webhooks and pre-built triggers. For promos, we use it as a universal bridge: whatever system generates your leads, Zapier can forward them into Plandalf’s catch URL and start each participant’s deadline automatically.

What Plandalf does here

  • Enrolment bridge — a single Webhooks-by-Zapier step POSTs new leads into your promo’s catch URL. No Plandalf-specific Zapier app required.
  • Universal trigger — any Zapier trigger (form submission, ESP event, row added, Slack message, payment received, …) can feed enrolment, so the same pattern works regardless of the tools earlier in the funnel.

What Plandalf does not do

  • We don’t currently publish a native Plandalf Zapier app — enrolment uses Zapier’s generic Webhooks action, which works everywhere.
  • Zapier itself isn’t an email platform — pick it as an automation tool, not an email tool.

Setup templates

Drop-in implementations

Copy-paste setups for the most common ways to wire Zapier into Plandalf.

promo · automation

Enrol participants via Zapier

Wire any trigger you already have in Zapier — a new form response, a new subscriber in your ESP, a row added to a spreadsheet — to POST into Plandalf's catch URL. Each incoming payload starts a new participant's deadline.

  1. In Zapier, Create a Zap.
  2. Pick your trigger. Any app that can signal "a new promo participant just arrived" — a form, an ESP, a CRM, anything.
  3. Add an action step: Webhooks by Zapier → Custom Request.
  4. Method: POST. URL:
    {{ promo.catch_url }}
    
  5. Content type: application/json. Data:
    {"email": "{{ trigger.email }}", "ref": "{{ trigger.email }}"}
    
    (replace {{ trigger.email }} with whichever field in your trigger step carries the email address.)
  6. Test and publish the Zap.

Automation graph

Connecting Zapier

How Zapier participates in Plandalf sequences: what events it exposes upward, and what actions Plandalf can perform on it.

Triggers from Zapier

Events Plandalf can subscribe to through webhooks, API work, checkout state, payment context, and connected integrations.

zapier.automation_step_reached
Fires when a contact reaches a designated step in a Zapier automation.
zapier.form_submitted
Fires when a form on Zapier is submitted.

Actions on Zapier

Things Plandalf sequences can do after checkout, payment, invoice, customer, or deadline events.

zapier.start_automation
Enrol a contact into a Zapier automation.
Example sequence
trigger: plandalf.checkout.completed
actions:
  - zapier.custom_api_call:
      endpoint: /v1/event
      payload:
        email: ${customer.email}
        plan: ${product_slug}

Integration methods

How Zapier connects to Plandalf

Each method below is the minimum viable setup. Pick the one closest to how you already use Zapier with checkout, payments, invoices, webhooks, API work, SDK checkout, and integrations.

  1. Method 1

    Trigger a sequence from a form

    Point a Zapier form's webhook / POST URL at Plandalf's intake endpoint and every submission starts whatever sequence you've mapped to it.

    curl -X POST https://api.plandalf.com/v1/intake/zapier \
      -H "Content-Type: application/json" \
      -d '{"email": "{{ form.email }}", "source": "zapier"}'
  2. Method 2

    Enrol from an automation step

    Inside Zapier's automation builder, add a Webhook step that POSTs the contact to a Plandalf sequence catch URL. Use this to mirror Zapier journey logic into Plandalf without re-building the segmentation.

    {
      "email": "{{ contact.email }}",
      "sequence": "post-signup-onboarding",
      "source": "zapier"
    }
Official Zapier docs and sign-up: zapier.com

FAQ

Common questions about the Zapier integration

Do I need a paid plan to use Zapier with Plandalf?

Plandalf itself is free to connect. Zapier's native webhook step is on its paid tiers — on the free plan, route the trigger through Zapier instead, which still works end-to-end.

How long does setup take?

Under 10 minutes — paste a webhook URL into Zapier, point it at the Plandalf endpoint, and trigger a test event to confirm.

Can I disconnect Zapier later without losing data?

Yes. Disconnecting only revokes the credentials — historical events Plandalf fired stay in your sequence logs, and Zapier's own records are untouched. You can reconnect any time and resume from the last seen event.

Does Plandalf store Zapier data?

Plandalf stores the minimum IDs needed to address a record in Zapier plus a log of events Plandalf fired. Source-of-truth data stays in Zapier.

What if my marketing need isn't covered by the actions or triggers listed here?

Drop into the Plandalf REST API and call Zapier directly from your sequence's HTTP action. Anything Zapier's public surface exposes is reachable.

Is there a usage limit?

There's no Plandalf-side limit. Zapier's own plan limits apply.

Where do I find Zapier's own documentation?

Zapier's homepage at https://zapier.com links to their developer docs. For Plandalf-side questions about the Zapier integration, see the Plandalf docs.

Feature detail