Could a way to process JSON data from a file be added? Something like @readjsonfile@[file.txt,payload.object.key].
This would reduce demand on API servers for commands that need to read multiple values. I currently have a command that reads eight values from an API. That means eight separate requests to the API each time the command is run. Even more, if I add more information to the command. It would be much more efficient if I could make a single API request and store the JSON payload in a file that I could then read as many times as needed.
Example:
@savefile@[jsonpayload.txt,@customjsonapi@[https://site.com/api]]Value 1 is @readjsonfile@[jsonpayload.txt,payload.object.key1]. Value 2 is @readjsonfile@[jsonpayload.txt,payload.object.key2].
* Probably have to use @customapi@ to retrieve the whole payload, to avoid an error from @customjsonapi@ not being given the "field" variable.