Payment Gateway Integration

P_q
Bronze 1
Bronze 1

Hello,

This is my first time using Appsheet. Is there possible to integrate Appsheet with payment gateway? And can it catch a response from the payment gateway API and add in the app view or some stuff within the app? Thank you. 

Solved Solved
0 2 157
1 ACCEPTED SOLUTION

Yes, it is possible to implement a payment gateway.  I have yet to do it but confident it can be done.

AppSheet supports return values with webhook calls in certain formats.  It does not yet support a full JSON payload as a return value.  Please refer to this knowledge articles on what format of return values AppSheet will support

Use return values from webhooks 

**************
There are other ways to integrate. 

1) Some service API's may provide development tools which you could use to call into the AppSheet API.   This could be used as  a "callback" to send results into your AppSheet data.

2) A Google App Script can be called from Appsheet and you can implement it to do the request/response heavy lifting.  The script calls the payment service API, parses the returned info and then bundles it as return values back to AppSheet OR inserts directly into your datasource OR both.

3)  There are online integrator services designed to make connections between two different systems.  "Make" is the name of the one I am familiar with and they have direct integrations into AppSheet.  They are a "no code-ish" type of platform that allows transformation as well as transmission between two different service platforms.


I hope this helps!

View solution in original post

2 REPLIES 2

Yes, it is possible to implement a payment gateway.  I have yet to do it but confident it can be done.

AppSheet supports return values with webhook calls in certain formats.  It does not yet support a full JSON payload as a return value.  Please refer to this knowledge articles on what format of return values AppSheet will support

Use return values from webhooks 

**************
There are other ways to integrate. 

1) Some service API's may provide development tools which you could use to call into the AppSheet API.   This could be used as  a "callback" to send results into your AppSheet data.

2) A Google App Script can be called from Appsheet and you can implement it to do the request/response heavy lifting.  The script calls the payment service API, parses the returned info and then bundles it as return values back to AppSheet OR inserts directly into your datasource OR both.

3)  There are online integrator services designed to make connections between two different systems.  "Make" is the name of the one I am familiar with and they have direct integrations into AppSheet.  They are a "no code-ish" type of platform that allows transformation as well as transmission between two different service platforms.


I hope this helps!

Thank you!