Answered

Do you have sample code on how to get the list of conversations for all users with the date range?

  • 3 August 2022
  • 1 reply
  • 30 views

Do you have sample code on how to get the list of conversations for all users with the date range?

icon

Best answer by Racheal 4 August 2022, 19:02

View original

1 reply

Userlevel 4
Badge +5

Hey @marcelo​ Racheal here from Support Engineer team 👋

 

We do have a couple examples in our docs here! You would want to use the Conversations API to extract full conversations. You'd first have to search for conversations within a specific date range, and then use GET for individual conversation ID's to get all of the conversation parts.

 

{
"query": {
"field": "updated_at",
"operator": ">",
"value": 1560436784
}
}

 

Reply