Hello everyone!
We need our app to receive a request that sends a JSON, and returning a JSON with its values generating a URL for the users to access.
So, we are creating a product screen in our app, and we need the user to be able to choose everything about that product, press a button that sends the JSON with all this info, and then receive in return a JSON with a URL for the checkout page.
Is it possible somehow?
Hello Lasevicius,
It’s possible, I do that with Shopify in a simplified way.
I would suggest to use API/Webhooks calls in Glide / or Make, and a few good scenarios to handle most of the heavy lifting without having your own server infrastructure.
It will take work, but definitely think it’s possible after researching on your data and needs.
Webhooks are 1 operation/shot. So they can be paired with tons of data, and only launched when something is fully operational/data transfer for example. And you can chain them too (sequential operations = only if one op is done, do another one from another service).
So have you configured this flow yet and the problem is only with the “await” part?
If you have access to Call API, I guess that’s what you need.
Else, trigger a Make webhook with the “input JSON”, then call the API, wait for the “output JSON”, parse it and send the checkout link back to Glide.