Hi everyone - some help with the following would be much appreciated. It may be a simple action but it’s taken me hours to figure out.
I have a list of stored numbered values in my database (sourced from an API call).
To successfully run an API call for multiple items on this list, I need to add inverted commas around each of the numbered items.
In other words, the list: 1, 2, 3, 4, 5, 6 needs to be ‘1’, ‘2’, ‘3’, ‘4’, ‘5’, ‘6’ when queried
How can I add commas around each of the items when making the API Call?
It’s important that the commas are not always present, as several functions of the application recognize only the number itself and would be unrecognizable if there were inverted commas around the numbers.
Here is the API Call:
Thank you very much in advance for any advice!!