Questions tagged [zapier]

Zapier is a tool that allows you to connect apps you use every day to automate tasks and save time.

Zapier is an online automation tool that connects your favorite apps, such as Gmail, Slack, MailChimp, and over 750 more. You can connect two or more apps to automate repetitive tasks without coding or relying on developers to build the integration. Move info between your web apps automatically, so you can focus on your most important work. It's easy enough that anyone can build their own app workflows with just a few clicks.

For example, maybe you get a lot of email attachments in your Gmail account and you want to save them to Dropbox. Every time you get an attachment, you could open up the email, click on the attachment, and then save it to Dropbox. Or you can have Zapier automate this for you, saving you time and effort.

Read More...

1162 questions
58
votes
3 answers

ajv-keywords@3.2.0 requires a peer of ajv@^6.0.0

I get that message every time when trying to install zapier-cli. Can someone help me with solving the issue?
D K
  • 581
  • 1
  • 4
  • 3
12
votes
1 answer

Zapier POST with error "body used already for"

Basically following the code example verbatim, but trying to make a POST request with fetch fetch('YOUR URL HERE', { method: 'POST', 'body': content }) .then(function (res) { console.log(res.text()); return res.text(); }) …
drzaus
  • 24,171
  • 16
  • 142
  • 201
12
votes
3 answers

Is it possible to integrate Stripe With Firebase and with iOS?

I've been querying on Google on how to do this - iOS to Stripe. I got a project that uses an online database and I've been doing it solo (it's almost done) so I used Firebase. I was so lucky to find this BaaS and time passed, I only need to…
user5156051
12
votes
1 answer

Hooking to Zapier using .Net WebHooks as RESThooks

I am looking into creating a "Zap App" and am wondering if anyone has done so using the new .Net Webhooks. They seem to have the "pattern" requested by RESTHooks, the Subcription/Publish mechanism. Not a lot of examples of it working and I wanted to…
Stephen McCormick
  • 1,706
  • 22
  • 38
12
votes
7 answers

Best way to implement push notifications with Firebase

I am an iPhone app coder, and I'm using Firebase as my backend server. Firebase doesn't support Push Notifications, so I've been trying to figure out how to include them in my app. I've read this question: How to send an alert message to a special…
Philip Sopher
  • 627
  • 2
  • 8
  • 19
10
votes
5 answers

Cannot find module 'nodemailer'

I'm using the Zapier Code application, I need to send an email receiving trello parameters, I'm using a javascript encoding along with node.js, but when I try to find the nodemailer module I always get the error that it can not be found. The error…
Fabio Sousa
  • 261
  • 1
  • 2
  • 11
9
votes
2 answers

Is there a "Meta-API" for Zapier?

While Zapier is very powerful at putting glue between various APIs, I stumbled upon the use case of creating Zaps programmatically, which would offer even more flexibility. I did some investigation and it appears that Zapier, to this date, does not…
Mehdi Chibouni
  • 340
  • 1
  • 2
  • 11
8
votes
2 answers

Why am I getting a Runtime.MarshalError when using this code in Zapier?

The following code is giving me: Runtime.MarshalError: Unable to marshal response: {'Yes'} is not JSON serializable from calendar import monthrange def time_remaining_less_than_fourteen(year, month, day): a_year = int(input['year']) b_month…
Samuel Hart
  • 81
  • 1
  • 1
  • 2
8
votes
2 answers

How to write fetch in "Code by Zapier"?

In zapier I use an action of Code By Zapier. It's based on node.js. I need to use fetch for implementing REST-API of my CRM. Here is the code I wrote, which runs well when I tried it with VS Code (outside Zapier): // the code by zapier includes…
Lior Elk
  • 83
  • 1
  • 3
7
votes
2 answers

Sending a POST request to my RESTful API(Python-Flask), but receiving a GET request

I'm trying to send a trigger to a Zapier webhook in the form of a POST request containing JSON. It works fine if I just send the POST request through a local python script. What I want to do is create a RESTful API which makes the trigger to the…
Joel Kingsley
  • 81
  • 1
  • 2
  • 4
7
votes
1 answer

FTP upload to my site (NOT Brick FTP) from Zapier?

I'm trying to set up a zap that will pull an e-mail attachment from OWA (Outlook Web Access) and upload it to my organization's web site. The only pre-configured FTP option is BrickFTP, and I'd like to avoid getting another service involved if…
7
votes
2 answers

Trigger script on google spreadsheet when a new row is inserted

I'm running a script on a google spreadsheet, that should be triggered by the onChange() event (when a new row is inserted in the spreadsheet) by a zap from Zapier (www.zapier.com). I can see the new info being created in the spreadsheet, but the…
6
votes
3 answers

Connecting Mongodb Atlas on Zapier

I'm trying to connect my Mongodb Atlas database on Zapier to be able to interact with other services. In the MongoDB Atlas interface, I copy the URI connection string : And I set it in Zapier I've made several trial. Without "mongodb://", with…
Samdsseau
  • 61
  • 2
6
votes
1 answer

Zapier Webhooks Posting Json Array

I'm having trouble getting Zapier's webhooks to post a true JSON array. I want the webhook post data to be like this: { "attachments": [ { "color": "danger", "fallback": "My fallback text is here", "title": "My Title…
Camden S.
  • 2,185
  • 1
  • 22
  • 27
6
votes
1 answer

return array of objects in 'Code by Zapier'

According to the documentation if I return array of objects subsequent steps will run for each of the objects. So if I return an array of objects that contain email addresses and in the next step send email to that address, emails should be sent to…
Nasir Ahmed
  • 501
  • 2
  • 14
1
2 3
77 78