
douvega
Caspio Guru-
Content Count
125 -
Joined
-
Last visited
-
Days Won
7
douvega last won the day on September 7 2018
douvega had the most liked content!
About douvega
-
Rank
Advanced Member
- Birthday 01/12/1989
Recent Profile Visitors
790 profile views
-
This is a very specific requirement, I would recommend you trying Caspio Professional services or hiring an independant developer to achieve what you need.
- 1 reply
-
- api
- integration
-
(and 2 more)
Tagged with:
-
Does your payment gateway offer webhooks or messaging service for each transaction? What is the payment gateway you are using?
-
Even though the standard payment flows that Caspio offers are very good, @Bradl is right, no recurring payments are available. I would like to recommend you trying this third party API connector which allows you to connect your payment processor directly to Caspio.
-
What you are looking for is possible with the AWS S3 API, there is a method to create a signed URL to your file and you can set the live time to 1minute for example so links are valid only for that time frame, anyone using the link out of that frame will get an error message from aws. It is not necessary to set your bucket public and the user get a more natural experience since it is secure without having to put in a password everytime he wants to view a file. Process starts from putting the initial file since it has to somehow relate to your Caspio record, it could be a complex pr
- 3 replies
-
- aws
- pdf viewer
-
(and 1 more)
Tagged with:
-
Illuminate last entry updated - Tabular Report
douvega replied to Leon13's question in General Questions
I think this Caspio tutorial is what you are looking for. I hope it can be of help. Regards. -
Passing Logged-In User's Email Address to Caspio Via WordPress
douvega replied to mrvotto's question in General Questions
Hi, Yes, passing the WordPress logged in user email as a parameter is completely possible. However, you must be a bit techie to get it done, you could create a button using the WP method wp_get_current_user() in the PHP of your site and then pass the email as URL parameter. I found this article on the web which could help you If you do not have the expertise of doing something like this, I would encourage to hire someone to do it for you as you may cause serious damage to your site if it is not done properly. I hope this gives you some light on what you are trying -
Parameters not being passed on Squarespace suddenly??
douvega replied to Deca001's question in General Questions
Hi there, Based on my experience, these type of services such as Squarespace or Weekly suffer some limitations when combining it with such a powerful service like Caspio. I would rather advise to create your own HTML site for hosting your web application, you will discover it is easy and the interface and other functionalities have no limits, you on control over everything. Another good alternative, in case you do not want to play with HTML coding is a WordPress site, you can manage your pages in the way you need with a drag and drop site builder. It all depends on your- 1 reply
-
- parameters
- deployment
-
(and 2 more)
Tagged with:
-
Duplicate Table Without Sharing Tables
douvega replied to astroboy's question in Tables, Views and Relationships
If you want to copy data from one account to another, then you can try using the Caspio API. However, you must be aware that this could be a costly operation depending on how many records you are copying. If you share why you are trying to do somethink like that, maybe we can find a work around. Regards. -
BFuchs reacted to an answer to a question: Have calculated field in tabular report
-
Thanks, the following code should work: <a href="#" id="myLink_[@field:Nurse_ID]" target="_blank"></a> <script> if([@calcfield:1#] > 0){ document.getElementById("myLink_[@field:Nurse_ID]").innerHTML = "Edit Password"; document.getElementById("myLink_[@field:Nurse_ID]").href = "https://MyAcct.caspio.com/dp/1234?Nurse_ID=[@field:Nurse_ID]"; }else{ document.getElementById("myLink_[@field:Nurse_ID]").innerHTML = "Add Password"; document.getElementById("myLink_[@field:Nurse_ID]").href = "https://MyAcct.caspio.com/dp/1234?Nurse_ID=[@field:Nurse_ID]"; } </script>
-
Hi @BFuchs Your code is not working for all rows since you are generating several items with the same id "myLink", remember each id must be unique. Could you please identify a field within the table which is unique so I can provide you with the proper JS? Tell me the full name of the unique field.
-
Using RLS with CASE SELECT Statements
douvega replied to Ras2019's question in Calculations and aggregations
Hi @Ras2019 What is the datatype for [@authfield:Company_Users_tbl_Company_ID] field? Is it autonumber, random ID, GUID?? -
It seems to me that you need a one to many relationship since one bid can contain many materials. https://howto.caspio.com/tables-and-views/relationships/
-
how to integrate caspio api using node js
douvega replied to abdul's question in API and Integration
I posted a NodeJS sample code to get the authorization token in the following post: You can reuse the code for making more calls as needed. -
In case someone is looking to connect to the CASPIO API using NodeJS, here is the code sample to get the authentication token. const https = require('https'); const querystring = require('querystring'); const data = querystring.stringify({ "grant_type": "client_credentials", "client_id": "[INSERT CLIENT ID HERE]", "client_secret": "[INSERT CLIENT SECRET HERE]" }); const options = { protocol: 'https:', host: '[INSERT CASPIO ACCOUNT HERE].caspio.com', path: '/oauth/token', method: 'POST', headers: { 'Content-Type': 'application/json' } }; const req = https