Noticed an issue with the conversation search API, specifically on boolean fields when coupled with the !=
operator.
For example the below query (even when run from the “Try it” button on the docs page) returns the same exact response as when using the =
operator.
POST https://api.intercom.io/conversations/search
Body: {
"query": {
"operator": "AND",
"value": b{
"field": "read",
"operator": "!=",
"value": "true"
}]
}
}
I tested with different value types (string
, boolean
), other boolean fields (ex: open
), as well as with “false” values. The behavior is the same.
Please assist.