TempoLife

TempoLifeFeaturesAutomations and webhooks › make

Make

There is no TempoLife app on Make. Here is the generic incoming-webhook route that will work when TempoLife deliveries start, written out step by step.

No TempoLife module publishedSignature: HMAC-SHA256Checked 2026-09-02

No deliveries are being sent. The delivery worker is not built, so a webhook registered today records your URL, your event and your signing secret and then sits there — TempoLife makes no outbound request to it, not even a test ping. Registering now is only worth doing if you want the secret ahead of time so you can write and unit-test your verification code. Deliveries begin when the worker ships.

The honest status

There is no TempoLife app, module or service on Make. Searching their directory will find nothing, and nobody is publishing one this week. What each of these platforms does offer is a generic way to receive an HTTP request, and that is the route TempoLife webhooks will take when the delivery worker ships.

Being blunt about that is more useful than a "coming soon" badge: a published platform app means certification, a maintained OAuth integration and a support commitment. Until the underlying webhook delivery exists there is nothing to certify, so the generic route is not a workaround — it is the design.

Setting it up, step by step

  1. Create a scenario and add a Custom webhook trigger. Make generates a URL immediately; there is no app to install.
  2. Open the webhook's data structure settings. Make can infer a structure from the first request it receives. Because it has nothing to receive yet, define the structure by hand from the payload examples on the automations page.
  3. Keep the raw body available. Enable the option that preserves the incoming request body so a later module can compute the signature over the exact bytes.
  4. Copy the webhook URL and register it here. Make's hook URLs are https on their own domain and pass the registration checks.
  5. Add a module that recomputes the HMAC. Make has no built-in HMAC action, so this is a small custom step. Route the scenario to an error path when it does not match.
  6. Continue the scenario. Everything after verification is ordinary Make routing.

Every one of those steps can be completed today except the last thing that matters: a delivery arriving. Your scenario will sit waiting until the worker ships.

What it costs you

Each platform bills per task or per operation, and the trigger volumes on the automations page are the numbers to plan against. meal.logged is the expensive one at three to six a day per user; weight.updated and steps.goal_reached are at most one a day each. If you are building for yourself, start with a quiet event and add the noisy one once the scenario is proven — it is much cheaper to discover a bug at one task a day than at six.

When a raw webhook is the better answer

If you already run a server, skip the platform. A verified receiver is about thirty lines, it costs nothing per event, the health data never passes through a third party, and you get the raw body the signature was computed over. The raw webhooks page has a complete receiver you can paste.

Register the URL now if you like

Registration is open and free, and it hands you the signing secret you will need for the verification step above. Nothing will arrive at it yet.

Register a webhookDo it without a platform

Frequently asked questions

Is there a TempoLife app on Make?

No. Nothing is published there, and this page describes the generic incoming-webhook route instead.

Will one be published?

Not before webhook delivery exists — there would be nothing for it to carry. Treat this page as the current route, not a placeholder.

Can I verify the signature inside Make?

Yes, with a small custom code step that recomputes HMAC-SHA256 over the timestamp, a dot and the raw body. Keep the raw body — a parsed and re-encoded copy will not verify.

Source: TempoLife platform specification — event, signature and retry policy · checked 2026-09-02

Other platforms

Raw webhooks

Setup steps and the honest status.

Your own endpoint

Zapier

Setup steps and the honest status.

No TempoLife app published

IFTTT

Setup steps and the honest status.

No TempoLife service published

Payloads, signing and the retry policy · Developer API

Automations need something to automate

Log meals, weight, steps and fasts in the app and the events on this page will have something real to carry.

Create a free accountGet the app