Questions tagged [make.com]

Make.com (formerly Integromat) is a freemium web service to integrate and automate workflows between a wide range web-based applications and services. It can be used as an alternative to other products like Zapier, IFTTT, or tray.io.

Make.com (formerly Integromat) is a freemium web service to integrate and automate workflows between a wide range web-based applications and services. It can be used as an alternative to other products like Zapier, IFTTT, or tray.io.

166 questions
0
votes
1 answer

Match pattern multiple lines Integromat

I want to match specific patterns in multiple lines with the match pattern in Integromat. The language is ECMAScript (JavaScript) FLAVOR. Salutation: Mr. x Mx. Mrs. or it could look like this: Salutation: Mr. Mx. x Mrs. I want to get the String…
Jana
  • 1
  • 1
0
votes
1 answer

Podio tags API call

I want to add tags to Podio item over Podio API, but I am struggling to format the json body correctly. As I am receiving 400, I guess my request is correct and the problem is in the json format. See the code below. Any suggestions, please? Just to…
wZdra
  • 1
0
votes
1 answer

Format request after user entry Integromat?

Have a custom app... The output I need to be like the first sample . Does this need to be handled in the communication area to alter it or is there a certain parameter type and JSON to get it to output this way after user entry? **Needs to be like…
Scott
  • 31
  • 3
0
votes
0 answers

SOLVED How can I send strings featuring latin characters not included in Excel ASCII table as JSON with VBA?

I am developing an Excel macro, allowing the user to send an e-mail via Gmail, with Excel data converted to PDF as an attachment. To do this, I am using Eledo PDF generator and Integromat. I am using Integromat Webhook feature by sending to it the…
0
votes
1 answer

Auto-Publishing from Integromat into Linked: Can't Share an Image Post

The documentation is limited on the Linkedin integration on Integromat: https://support.integromat.com/hc/en-us/articles/360006248613-LinkedIn I can upload a text post just fine, but uploading an Image Post is giving me trouble. What data is it…
0
votes
1 answer

Integromat date parser

How can I parse a Text Field with date information to a real date? Here is an example string: Thu, Jan 28, 10:00 AM CEST
0
votes
1 answer

Setting Up GCP VPC for Integromat

The goal is to allow Integromat to connect to our GCP CloudSQL MySQL instance. Usually what I've been doing to allow an IP address to access a GCP resource is to add the authorized IP as a public IP authorized network in the resource's Connectivity…
0
votes
1 answer

Integromat Iterator - Bundles Versus Operations?

In Integromat, I am updating a Trello dropdown by iterating an array of Google Contact names. I am successfully seeing multiple Bundles in the Output I am NOT getting multiple runs of the Trello "Make and API Call" module. Perhaps I need multiple…
Hank
  • 113
  • 1
  • 11
0
votes
1 answer

Integromat Watch Google Contacts - What to do for DELETE actions?

With the "Watch Contacts" Google Contact module, you can track when I contact is added or edited. What about when a contact is deleted? Contact deletion seems to give no trigger at all. I am using this module to "mirror" my contacts to my companies…
Hank
  • 113
  • 1
  • 11
0
votes
1 answer

Error handling with different error structures in my custom Integromat app

I have an API that returns different error structures for different endpoints and status codes. Sometimes it's a string, sometimes a complex object or an array. Since Integromat requires all error handling to be done in one place in the Base and not…
0
votes
1 answer

Implementing asynchronous API endpoints in Integromat app

I am trying to implement an API that has asynchronous endpoints, for example, create/delete only initiates the operation (see screenshot), but then there is a different endpoint that checks the actual request status. Can this be implemented as one…
romulus07
  • 13
  • 2
0
votes
1 answer

Input field help message based on connection parameter for my Integromat app

I want to generate a help directive whose text depends on a connection parameter. Trying to use a curly bracket expression doesn't work. { "type": "text", "label":"Relative URL", "name":"url", "help":"Enter a path relative to…
Nekoi
  • 3
  • 1
0
votes
1 answer

First request to a webhook

To create a webhook, it has to pass the following validation: Receive a GET request onto the webhook URL and read a specific "challenge" field from the query. Send this field back to where the request comes. Can this be implemented in an…
0
votes
1 answer

Instant trigger without a connection in custom Integromat app

I am implementing an app that only contains webhooks and doesn't mention authentication in the API documentation. Is it possible to have just an instant trigger and a webhook without a connection?
Volodymyr
  • 17
  • 3
0
votes
2 answers

Input parameter without the "name" property in custom Integromat app

I am trying to create a dropdown parameter (of type 'select') and it should contain two groups of nested parameters. But, I do not need to pass this top-level parameter to the API. I've tried removing the "name" property of this parameter, but then…