Hi @Mark
Help me please to understand better what syntax the API Column is using to get a right answer?
Iām testing a REST API to monitor values from external devices. I can read/write values using it in order to start/stop a light, pump, valve or know their temperatures, levels, etc.
Itās something like this but the Glide APP will be the front end for users:
My API works with this syntax:
http://{server}:{TCP_Port}/tags/{Object}
If I fire a request to read 2 variables (tags) to know their values from any web browser, I will see the answer like:
http://valher.dyndns.org:9990/tags/Temperatures
Its JSON file looks like:


and as you can see, the API supports POST, GET, PUT and DELETE. With it, I could write any value to devices (pump, motor, lamp) in order to start/stop it from Glide if API column is able to use PUT method (so far, it only supports POST).

Until here, everything is fine butā¦
I donāt know how to write the right syntax into API Column in my case!!
I saw your API demo with Pokemon example and you use:
https://silent-comet-jasmine.glitch.me/pokedex
but at the end, what is the final syntax that API Column is waiting/wishing with its parameter {PokemonName}?. Something like:
https://silent-comet-jasmine.glitch.me/pokedex={PokemonName} ?
https://silent-comet-jasmine.glitch.me/pokedex/{PokemonName} ?
https://silent-comet-jasmine.glitch.me/pokedex="{PokemonName}" ?
Again, my API needs to use the syntax:
http://{server}:{TCP_Port}/tags/{Object}
and I could use:
http://valher.dyndns.org:9990/tags/Temperatures to read Temp values
http://valher.dyndns.org:9990/tags/Presures to read Pressure values or
http://valher.dyndns.org:9990/tags/Levels to read Levels values from my devices.
but the API Column does not give me any replyā¦
Must my API have the same Gildeās API Column syntax in order to work?
Is there a workaround or Iām missing anything? 
What I try to do with all this is to bring IIoT world to Glide!! An amazing field and business for many of us.
Thanks in advance for your help.
Saludos