SearchQuery missing tags, sortby etc. on API call

Hi,

I’m sending an API call using the http.js-service in the client, which passes the required parameters to the server. However, the search query from RequestModelAccessor does not include parameters that I know exists, such as filter tags, sort by and so on. Am I missing something?

Litium version: 7.6.2

Solved the filter tags by applying the filters from the URL to the POST URI:

const url = new URL(window.location);
await post(`/api/test/${type}${url.search}`, { })

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.