In changelog you mention "Getter filters for APIs. URL parameters (such as ?datestart=123) can now be used to filter GET API calls." Can you please explain how to do it? This is a sample get response
[
{
"0(page_element)": {
"id": 123,
"name": "ABC"
}
},
{
"0(page_element)": {
"id": 234,
"name": "EFG"
}
}
]
Can you explain how to modify my get call in order to get the record with name="EFG"? My current GET call is
https://example.org/api/sample_poject/page_elements/v1