Hi guys,
I would like to integrate the API of a 3rd party into my Pro glide app, is this possible? if yes, how can I go about it?
Hi guys,
I would like to integrate the API of a 3rd party into my Pro glide app, is this possible? if yes, how can I go about it?
Yes, itās definitely possible. But the best way to go about it will depend on a number of factors. Some things to consider:
If you can describe your use case a bit, I could probably provide some more specific advice/guidance.
Thank you so much for this response.
I am trying to integrate Plaid API into my personal finance management app/ expense app.
I am completely lost as to how this can happen.
It looks to be quite well documented, so Iām sure itās possible.
But again, to be able to offer any specific advice Iād need to know more about what youāre hoping to achieve.
āI am trying to integrateā¦ā could mean many many thingsā¦
I want users to be able to link their bank accounts to my expense app using the Plaid API. I would like to embed plaid into my App so that when users link their bank accounts the information pulled from the Plaid software reflects on my app, so I integrate plaid software into my glide app.
I hope this explanation is a bit clearer?
I would like to import data from the 3rd party API only i.e Plaid
I am using a mix of Glide tables and Google sheets
Okay, so a couple of thingsā¦
If I was to undertake something like this, Iād probably use Apps Script. Whether or not this is acheivable for you, I canāt say as I have no idea if youāre proficent with Apps Script. If youāre not - and especially considering the sensitivity of the data youāll be dealing with - I think you would be wise to consult with an Expert on this, and consider paying somebody to do it for you.
Personally, I donāt think this is something I would want to do. I wouldnāt want to be handling this sort of data.
+1 for this. Iām generally taking a very careful approach when it comes to data like banking or health.
We donāt request access to personal banking information, all we have access to is their income and expense transaction history, which is all we need, and is also something they provide to us voluntarily as an expense and income tracking app.
Okay. My previous advice and comments still stand. And you should also read carefully the link that Jeff provided regarding Glide restrictions on user data.
Alright, would do. Thanks a lot
Hi,
Is this still the case regarding POST to 3rd party API?
I was reading this VERY LONG topic about Glide API and it only confused me moreā¦
So we have to revert back to a YES CODE (Google Script?) solution? Seems very messy after using Glide
Could you name a few?
āminimum codingā is sounding more and more appealing these days.
Iāve been going in circles trying to make this API work inside the API column in Glide. Have I been chasing my tail for nothing? It cannot be done inside Glide?
I want to be able to send a phone number (letās call it column A) to the API sitting in Column B. Hopefully, this column B (or by using another column) will return the response to immediately tell my users that the number they inputted isnāt registered on WhatsApp.
Thanks
I think you can try the āFetch JSONā column with the link being.
https://proweblook.com/api/v1/checkwanumber?number=[phone number]&api_key=[api_key]
Please remember that this can be a problem if you have an API that charges based on calls
From my understanding, letās say you have 10 rows of data in the table youāre trying to get this info, each user that logs in will initiate 10 calls to the API, so letās say 10 users logging in will make 100 calls, not 10.
Thanks. This is exactly what Iāve done, but it returns nothing.
Going to the URL will return the correct and expected responseā¦
Iām still trying to understand the limitation of this āFetch JSONā column.
Thatās my understanding as well. To mitigate this influx of API calls, I plan a two-phase funnel:
Then I would think itās a CORS issue.
I would try making a call through Integromat/Makeās HTTP module, then write the result back to your database.
However this is hard-coded so letās say if a number is not on WhatsApp but signs up later on, your data does not reflect that change.