I feel like I’m losing my mind. I cannot find a solution for this. It seems like it should be trivial. What am I missing?
Background
- On my website I have a simple form to subscribe to updates. There is one field only: email. The form fires the Subscribe Zap below via webhook.
- I store the emails in a Zapier Table.
What’s Working
- Zapier Table: Subscribers: A simple list of emails. Just one column.
- Zap: Subscribe: Add a record and then send a confirmation email to the subscriber. The confirmation email includes a link (a webhook) to trigger the Unsubscribe Zap.
- Zap: Unsubscribe: Looks for the email address in the table and removes it from the table if found.
What’s Failing
- After the Unsubscribe Zap removes an address from the table, the browser displays the json response below. How do I instead show a human response such as “You have been unsubscribed.”
{"attempt":"0191dda2-d009-37cb-8895-ec6d6956a5b0","id":"0191dda2-d009-37cb-8895-ec6d6956a5b0","request_id":"0191dda2-d009-37cb-8895-ec6d6956a5b0","status":"success"}
Thank you.