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
6
votes
3 answers

How do I JSON.parse an array in a Zapier Trigger?

I am trying to JSON.parse the array "data." I need to be able to pass the array as the root. { "data": [ { "type": "name", "id": "123" } ] } The response should look like this containing only objects. Zapier doesn't seem to…
Wesley Davis
  • 87
  • 1
  • 1
  • 4
5
votes
1 answer

Google calendar watch for updates on events

I want to listen programmatically when an event I created on the Google calendar is updated (like when someone accept/reject an invite) and I want to receive the relevant info regarding the event (type, confirmed/declined attendees, etc). I've tried…
Jerryco Alaba
  • 85
  • 1
  • 6
5
votes
2 answers

Results must be an array, got: object in Zapier?

I am using search in Zapier. I have my own API which sends a single object when I search item by its item Id. Below is response from API { "exists": true, "data": { "creationDate": "2019-05-23T10:11:18.514Z", "Type": "Test", …
TechChain
  • 8,404
  • 29
  • 103
  • 228
5
votes
3 answers

Best way to 'listen' to s3 bucket for new file?

I have connected zapier to a webhook I am listening too, which sends a JSON file into my s3 bucket. I have some python code that I want to execute when a new file is uploaded into the bucket, in real time over the file. What is the best way to…
RustyShackleford
  • 3,462
  • 9
  • 40
  • 81
5
votes
1 answer

Zapier - Catch Hook - JSON Array - Loop over each item in array

I need to use a Zapier webhook to take some incoming JSON data, which contains an array of items, loop that array and do an action for each element. Here's a sample of incoming JSON data: { "first_name": "Bryan", …
Kenny
  • 2,124
  • 3
  • 33
  • 63
5
votes
1 answer

Converting a Curl command to run in a Zapier Webhook

I'm trying to find a way to run this curl command in the Webhook Zap on Zapier, but I can't seem to figure it out. How would I enter this in the Webhook? Would it be better to run it as a Code Zap? curl -X POST…
Chris Graham
  • 51
  • 1
  • 2
5
votes
2 answers

Adding button to Slack Channel Message using Zapier Integration

Does anyone know of a way to add interactive buttons to a slack channel messages that are created using the Zapier slack channel message integration?
Ian Percy
  • 65
  • 4
5
votes
1 answer

Download PDF using Code step in Zapier

I am trying to download a PDF from a website using Javascript in the "Code" step in Zapier. I am struggling to find documentation on how to output the file object. Here is my basic code so far. unfortunately, the file that comes back is garbage…
5
votes
1 answer

Javascript In Zapier: Split by "-" to multiple outputs

I'm trying to take text in a string like this: "- Data 1 - Data 2 - Data 3" And split each of those using javascript into their own "output" for zapier. The goal is to be able to take that data and each data line is used to pre fill a form for a…
5
votes
1 answer

Zapier: modification of webhook listener HTTP response?

Certain API's require additional information in the webhook listener response. For example, I'm trying to subscribe to Outlook.com's push notification service, which describes the flow below: "The Outlook notifications service tries to validate the…
gnyc100
  • 51
  • 2
5
votes
2 answers

Can a slackbot pull messages from a private channel and post in another slack channel?

I am wondering if a slack bot can pull messages that are tagged with a certain string of characters from a private channel and then post that "tagged" message in another channel (private or public). All within the same slack group.
Jouncey
  • 61
  • 1
  • 2
5
votes
1 answer

Multiple parameters in slacks slash command with Zapier

I have a slash command in slack calling into a zapier webhook. The sample command I've setup is: /todo [Title] [User] In Zapier, there is an attribute called text in the incoming webhook that maps [Title] [User] as a string value. The problem is…
Nick
  • 4,002
  • 4
  • 30
  • 41
4
votes
2 answers

"Run Python" module gives error: 'str' object has no attribute 'copy'

I have made a very simple Python helper, to update a task in Asana with custom field on a task. it works on my local machine in terminal. I am trying to add it to a Zapier 'Run Python' block, but get what looks like a generic error 'str' object has…
Brad Sullivan
  • 97
  • 1
  • 1
  • 8
4
votes
1 answer

Is there a specific process to have Staging and Production Zapier apps?

We are about to start entering the beta process of our Zapier app and I have this question which I couldn't find an answer in the Zapier documentation: The problem is regarding the staging and production environments. We have 2 Zapier apps setup,…
Bruno Finger
  • 2,105
  • 3
  • 27
  • 47
4
votes
1 answer

How to GET value from URL and add it as hidden field in Contact Form 7

I'm trying to GET URL parameters and to add it as hidden values into Contact Form 7. The goal is to retrieve them trough a webhook to Zapier. I've read this documentation. I'm trying like this (under the Form tab, at the bottom of my form, just…
1
2
3
77 78