Dear Gareth,
For filtering records, I am using get and lte methods.
The filter listed below should work which I use in some python scripts. The error is invalid JSON, so there may be a comma missing in your json string before "sorts".
I hope that helps.
Kind Regards
{
'filters': [{
'conditions': [
{
'field_name': 'create_date',
'method': 'gte',
'value': 1627779600000
},
{
'field_name': 'create_date',
'method': 'lte',
'value': 1630454399000
},
{
'field_name': 'name',
'method': 'not_contains',
'value': "Unwanted String"
}
],
}],
"sorts": [{
"field_name": "create_date",
"type": "desc"
}]
}
------------------------------
Aydin Kucukkarakas
------------------------------