How do I mass-download emails from PD that are in my Deals?

poetrymaster
poetrymaster Member Posts: 7 VERIFIED MEMBER
First Anniversary First Comment Photogenic
edited November 22 in Apps and Integrations #1

Or linked to specific Contacts…is there ANY way to mass-download emails from PD into an Excel?

If not, is there a workaround, say, to export all the emails to another CRM, and then download them that way?

Answers

  • mac@datomni.com
    mac@datomni.com Member Posts: 14 VERIFIED MEMBER
    10 Comments Name Dropper First Answer Photogenic
    edited November 19 #2

    We recently had a similar need when adding sentiment analysis on Pipedrive emails to our implementation bundle.

    Ended up using the Pipedrive API for this. Roughly the pipeline works like this:

    First we use GET /v1/persons/{id}/mailMessages or GET /v1/deals/{id}/mailMessages to get email IDs and then fetch full email content with GET /v1/mailbox/mailMessages/{id} for each ID. The first call only returns snippets, not full emails, hence the second call.

    There's also an email threads endpoint available: GET /v1/mailbox/mailThreads/{id}/mailMessages, but we haven't explored that yet.

    The setup does need some cleaning and formatting steps to make the emails usable, though.

    Maybe it can be easier/no-code with Make or other similar tools.

    If anyone has a simpler custom solution, I'd love to hear it.

    Cheers.