Hello I was looking for more information on how to strucuter the follwing API:
/api/v2/conversations/participants/attributes/search
I'm having a hard time because as far as the documentation goes the date type is the only required field.
I was trying to run a test with the follwing body:
{"query":[
{"type": "DATE_RANGE",
"fields": ["startTime"],
"startValue": "2023-05-21T04:00:00Z",
"endValue": "2023-05-23T03:59:59Z"}]}
However it was giving me this error and I'm not sure where to go from here.
{
"message": "Conversation participant attribute search is not enabled for organization, missing product.",
"code": "bad.request",
"status": 400,
"messageParams": {},
"contextId": "481dc3ab-a183-4e80-9730-2aeeb76be5b0",
"details": [
{
"errorCode": "BAD_SEARCH_REQUEST",
"fieldName": "NO_FIELD"
}
],
"errors": []
}