The URL length limit is causing me issues when I call the end point /_api/Web/Lists/getByTitle('ListName')/items
: if I have too many parameters, the URL length is too long and my request is not treated.
I know we can pass a CAML query to the endpoint /_api/Web/Lists/getByTitle('ListName')/GetItems
in the body, but this endpoint is limited if we want to expand a lookup/user field. So I'm stuck with /items
.
Is there a way to do a POST to /_api/Web/Lists/getByTitle('ListName')/items
with passing the parameters in the body instead of passing them in the URL? If yes, how? I didn't find anything on the web about it…
Thanks