Questions tagged [integromat-apps]

Integromat Apps are connectors to 3rd-party services on the Integromat platform. Use this tag for questions regarding developing an app on Integromat.

69 questions
0
votes
0 answers

Trying to do a Podio API Call with Integromat getting back 403 forbidden - InvalidAccessTokenError

I face a problem with the Integromat Make an API call action to Podio. I want to make a Post request to add a user to a workspace which should be possible: https://developers.podio.com/doc/space-members/add-member-to-space-1066259. However, when I…
0
votes
1 answer

Integromat & Wild Apricot

I am absolutely new to Integromat and looking for some guidance. I am trying to download data files from members of the Wild Aprico App to a google drive. I am able to connect to Wild Apricot but I have no idea how to create a scenario to do…
Rolf12
  • 701
  • 1
  • 6
  • 20
0
votes
1 answer

How to format "start date" coming from google calender and Dialogflow in integromat?

I am trying to set up a filter in integromat where i am putting the condition like this; condition google calender free/busy- Time Min. is equal to dialogflow date_time. Problem is date/time format from google calender is like :- April 2, 2021 3:00…
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

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…
0
votes
1 answer

Custom input option for a "select" parameter

Is it possible to have a "select" parameter with pre-defined options, that also accepts random manual input by the user? So the user can enter "air" into the example below. { "name":"a", "label":"A", "type":"select", "options": [ { …
0
votes
1 answer

Webhook registration in a custom Integromat app

I'm trying to register and use a webhook programmatically. When creating the webhook and trying to register it via the API (in the Attach tab), the initial server message looks like this: { "realtimeapi_code": "KTTqE" } At that point, I always…
0
votes
1 answer

Mappable parameter for date without time

I am implementing an API that has the following requirement: The due date should be sent in the format without time. How can this be done? The Integromat docs mention a boolean "time" parameter of the date object, but it doesn't seem to affect…
romulus07
  • 13
  • 2
0
votes
1 answer

One webhook for many Modules of custom Integromat app

Is it possible to use one webhook in many instant triggers (modules)?
0
votes
1 answer

Multiple http requests in a single Integromat module

Is it possible to make one request to get some data, and then make another request within a single module run?