Hi,
I would need to pass multiple animal ID's as filters, so I can retrieve multiple animals by ID in one request.
However the method described there did not work for me (either because it was still on V2 or because I'm doing something wrong)
When I try to pass the animalID-s in the data as filters like this, I get "animalID is not a valid filter field":
"data": {
"filters":[
{
"fieldName":"animalID",
"operation":"equals",
"criteria":["10000554", "10003742"]
}]
}
If I try exactly what is in the other conversation, trying to pass it as search instead of data, I get all the animals in the api without any filter applied..
What am I doing wrong?
Thanks,
Tamas