Early bird discounts live! Claim your offer
MemberPass Logo

Make (Integromat)

Drive MemberPass from Make scenarios using HTTP modules and webhook listeners.

Make (formerly Integromat) does not ship a native MemberPass app today. Integrate via Make's built-in HTTP and Webhooks modules against the hosted OpenAPI spec — every MemberPass REST route is available.

Outbound: subscribe to a MemberPass event

  1. Create a Make scenario and add a Webhooks → Custom webhook listener at the top.
  2. Copy the listener URL.
  3. In MemberPass: Settings → Webhooks → New endpoint. Use the Make listener URL as the target. Pick events. Save. Copy the secret.
  4. Add a Tools → Compose a string module (or Serverless → Code) to verify MP-Signature using the secret.
  5. Branch into downstream modules.

Signature verification in a Serverless JavaScript module

import crypto from "crypto";

const rawBody = context.raw;
const header = context.headers["mp-signature"];
const [tPart, v1Part] = header.split(",");
const t = tPart.split("=")[1];
const v1 = v1Part.split("=")[1];
const expected = crypto
  .createHmac("sha256", secret)
  .update(`${t}.${rawBody}`)
  .digest("hex");

return {
  valid: crypto.timingSafeEqual(Buffer.from(expected), Buffer.from(v1)),
};

Make normalizes JSON bodies by default — for correct signature verification you must read the raw body (context.raw), not the parsed context.body.

Outbound: call the REST API

Use an HTTP → Make a request module:

  • URL: https://api.memberpass.net/v1/<path>.
  • Method: whatever the endpoint needs.
  • Headers: Authorization: Bearer mpt_…, Idempotency-Key: {{uuid}}.
  • Body type: JSON for writes.

Alternatives with native support

If you want typed triggers + actions without writing HTTP modules yourself, use:

  • Zapier — 71 triggers, 24 write actions, 35 searches in the App Directory.
  • n8n — community node on npm (n8n-nodes-memberpass) covering the full REST surface.

How is this guide?

On this page

MemberPass is a product designed by you — for you.

No boardroom full of executives deciding what we ships next. Our roadmap always shaped by you with your feedback.

Share feedback or a request