Front.com Node

Hi n8n community!

A node for Front.com would be super useful

In my case it would allow us to connect Front to Notion since Notion has all the info on our contacts and deals but since it’s a messaging tool many integrations that they don’t have available could be interesting

Any resources to support this?

Unfortunately I don’t have the capacity to do it myself

I’ve created an n8n node for FrontApp using Gemini and ChatGPT (I had them check eachother’s work back and forth couple of times). You can try to do the same. I would share the code it produced but it is longer than what I’m allowed to paste here unfortunately. The code I asked AI to write covers:

  • Comments:
    • Create, get, update, list conversation comments, and list comment mentions are implemented.
  • Conversations:
    • Get, list (with optional filtering via a JSON string), create discussion (by posting with type “discussion”), update (by passing a JSON object), add/remove followers, add/remove links, list messages, and list events are added.
  • Contacts:
    • List, get, create, update, delete, merge contacts, add/delete contact handles, and get/add contact notes.
  • Contact Groups:
    • List groups, create, delete, list contacts in a group, and add/remove contacts from a group.
  • Messages:
    • Get a message (and its source), send a new message, send a reply, import a message, receive a custom message, and mark a message as seen.
  • Drafts:
    • Create a draft (or draft reply), list drafts for a conversation, delete a draft, and edit a draft.
  • Tags:
    • List tags, get, create, update, delete a tag, and list conversations by tag.

Each operation uses FrontApp’s public API endpoints with HTTP methods and request bodies as needed.

There are other endpoints which I didn’t ask it to cover. You can ask AI to do it for you if you need them.

Hi Ziad,
Did you publish this code somewhere (GH) by any chance?
Would be super interested in reusing it.
Thanks!