Reply and Note box Code | Community
Skip to main content

Hello guys

By any chance anyone knows what is the HTML code for the Reply / Note box? 

As far as I am looking they have the exact code in the Inspect section, maybe I am looking at the wrong thing.

Thank you 
 

 

Hey there ​@Lucky Managers! Emily from Support Engineering here 👋🏼

 

We don’t provide the code for replying/using notes, however to programmatically add a note to a conversation using the Intercom API, you can do the following:

  • Use the endpoint: https://api.intercom.io/conversations/{conversation_id}/reply
  • In the request body, include:
    • "message_type": "note"
    • "type": "admin"
    • "admin_id": "YOUR_ADMIN_ID"
    • "body": "Your note here" (this can include HTML formatting such as bold, italics, and lists)

You can use ”message_type”: “comment”to reply to a conversation as normal.

 

Hope this helps! 💪🏼