9.3.0
Apply advanced filters via POST Request (Version 9.3.0+)
Starting from version 9.3.0, Laravel Restify introduces the ability to apply advanced filters using a POST request. This enhancement simplifies the process of sending complex filter payloads without the need for base64 encoding. Now, you can send the filters directly as JSON in the request body:
const filters = [
{
'key': 'ready-posts-filter',
'value': null,
}
];
const response = await axios.post(`api/restify/posts/apply-restify-advanced-filters`, { filters });