Hi,
I am trying to use below API to search for records in Directory :
https://api.qualtrics.com/c79e78a949572-search-directory-contacts
When I was trying out in documentation, single field filter works fine, but when I use below code for multiple criteria based on syntax they have provided I am getting an error :
{
"meta": {
"httpStatus": "400 - Bad Request",
"error": {
"errorMessage": "The provided simpleFilter syntax is invalid, please review all components before retrying the request",
"errorCode": "CFH_0.4"
},
Below is the code that I am using in body:
{
"filter":
{
"conjunction": "and",
"filters":
b
{"comparison": "eq",
"filterType": "email",
"value": "aa@b.com"},
{"comparison": "eq",
"filterType": "externaldatareference",
"value": "cc@b.com"}
]
}
}
What am I doing wrong ?