Solved

Updating Messages/Conversations

  • 22 March 2024
  • 2 replies
  • 17 views

Badge

We’ve recently implemented an incoming message webhook. We’re able to authenticate and consume the messages with no issues. One thing we’d like our application to do is to update the message (or conversation) in Front so that it appears to have been read, archived, or deleted based on the users settings in our application.

 

We’re currently attempting to do this using the “Update Conversation” endpoint. Here is an example.

url: “"https://api2.frontapp.com/conversations/cnv_19jthp3g"

body: 

{
"assignee_id":"tea_6a2to",
"status":"archived"
}

 

We’ve also tried this using a body like this:

{
"assignee_id":"tea_6a2to",
"inbox_id":"inb_ak1l8",
"status":"archived",
"tag_ids":[],
"custom_fields":[]
}

 

We are using PATCH and getting a response of 204 -  NoContent but we are not seeing any changes to the message or conversation in Front. We’re hoping for some direction on what we may be doing wrong. Is there a better approach to updating the message directly instead of the conversation or are we missing some other piece of required information?

icon

Best answer by jason 22 March 2024, 19:22

View original

2 replies

Userlevel 4
Badge +7

Conversation updates via the API are applied at the team-level, but will not change the personal status for a teammate who is a participant in that conversation (see this article for comprehensive details).  

You can configure rules which perform an Archive for specific teammates action, but to trigger this via the API you’d need to do something like adding a tag to the conv / updating conv custom fields to trigger a rule to archive for specific teammates. 

Badge

Thanks Jason.

Reply