Answered
I'm creating wallboard for my client where I have to show how many "total chat today"? How can I fetch that? Please help.
I'm creating wallboard for my client where I have to show how many "total chat today"? How can I fetch that? Please help.
Best answer by Roy
@anand , How about using Conversation Search API for that?
Sending request to https://api.intercom.io/conversations/search
{
"query": {
"operator": "AND",
"value": [
{
"field": "created_at",
"operator": ">",
"value": 1619481600
},
{
"field": "created_at",
"operator": "<",
"value": 1619568000
}
]
}
}
1619481600, 1619568000 This Unix timestamps are for todays date.
Reply
Join the Intercom Community 🎉
Already have an account? Login
Login to the community
No account yet? Create an account
Intercom Customers and Employees
Log in with SSOor
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.