Sending data to my server to find optimal schedule

My app needs to send json data via POST to my server who needs to find the optimal matches/players/courts schedules. As a result, i will get json with optimal schedule.

I am on the maker plan.

From what I can see, I have teo options here:

  1. send via web hook
  2. send via js column javascript POST request

I need to have some nice progress indicator until the server fnishes the job.

Never worked with web hook.

Any suggestions. Appreciate

Is it an authenticated request?

If yes, then I would advise using a webhook to Make to fetch the data, and then the Glide Make integration to write the result back to Glide.

It could be done with JavaScript, but it would not be secure, so it’s not suitable for authenticated requests.

For the progress indicator, a common technique is to use an animated GIF with visibility conditions.

No it is for getting optimal schedule returned by algoithm on server. Js column can make POST fetch and i can remove gif when column content is not empty?

How to trigger ja fetch column to execute js?

Here is a very simple example:

2 Likes