I am trying to pass a list of IDs to a REST api (apex ords).
I have a url like this :
https://apex.oracle.com/***/apex/anime_keeper/ak/getAnimeList/:ids
when I do :
https://apex.oracle.com/***/apex/anime_keeper/ak/getAnimeList/1
I get the item with id = 1 but if I do :
https://apex.oracle.com/***/apex/anime_keeper/ak/getAnimeList/1,2,3
I get a 500 Internal Server Error
How should I format my url so I can use the 1,2,3 list in a where id in (ids)
in apex ords?
this is a screenshot of ords if it can help :