I am trying to structure a URI that accesses my data by id.
Currently, my URIs are based on a query like this:
.../content?parentList=15&type=note
How could I structure a similar URI so that I could request notes in multiple lists?
Essentially combining the results of the following two URIs.
.../content?parentList=15&type=note
.../content?parentList=16&type=note
Is there a standard way to do this?
source
share