Has anyone had experience in sending user data to zapier after login with devise?
After plenty of research i haven't found something that'd post the users email address to a webhook.
Has anyone had experience in sending user data to zapier after login with devise?
After plenty of research i haven't found something that'd post the users email address to a webhook.
post to zapier using httpParty:
HTTParty.post(ENV['ZAPIER_CANDIDATE_UPDATED_URL'], body: notification_body)
use webhook integration @ zapier and consume notification_body hash with email inside
Where to fire up this code in devise? Take a look: Ruby on Rails Devise code after login