Hello, help needed to pass an email and a checkbox to Sendy

Hello! I have been using a form in my website which is basically an input form (the email one) and a checkbox for GDPR

I used this tutorial https://www.youtube.com/watch?v=fODh4b-OtRw&ab_channel=Finsweet to pass the checkbox to Mailchimp with a “true”.

I am now using Sendy, and I want to connect it directly to webflow, without using Integromat or Zapier.

This is the API Documentation: Sendy API, since I see you need to pass the values using hidden fields and the POST Button Form

I saw this on the forum: Webflow form to Sendy.co using HTTP POST - #6 by cyberdave

Obviously paid :smiley:

Thanks!

Hello there!
Hope you’re doing good

I can help with your requirement.

Kindly reach out to me at luis@cisinlabs.com or skype me at live: luis_18439.

Hope to hear from you soon.

Have a nice day.

Thanks and Regards,
Luis

Hi Juan,
This seems to be right up my alley of expertise and I would be happy to help you out on this.
You can reach me on andrewjohnson56782@gmail.com
Cheers and Have a great day,
Andrew

Hello! Made it by using Integromat and pasting these values

Webflow (Watch Events) with a webhook (you only need to link it with your form, so use a readable id for your form), connected with a HTTP Make Request, with:

  • URL of sendy plus /subscribe (http://mydomain/sendy/subscribe)
  • Method POST
  • Empty Header
  • Empty Query
  • Body type: Multipart/form-data
  • Fields:
    ** key: api_key / value: your api key / field type: text
    ** key: email / value: your email watched from the form submission / field type: text
    ** key: gdpr / value: your checkbox value watched from the form submission / field type: text
    ** key: list / value: your subscribers list from Sendy / field type: text

Kind regards!!!