I can not find out how to pull all the emails from a Deal Record. The following properties are what I am looking to pull from Deal: hs_email_text hs_email_subject hs_email_from_email
I want to pass in a Deal ID and receive all the emails on that record with the above properties.
I have tried to pass in the filters to the email search endpoint and I keep getting no results.
1. Retrieve all email engagements associated with the deal using the Deal ID. GET /crm/v3/objects/deals/{dealId}/associations/emails
2. Fetch Email Details: For each email, get the details like hs_email_text, hs_email_subject, and hs_email_from_email. GET /engagements/v1/engagements/{engagementId}
This will give you all the emails linked to the deal.
1. Retrieve all email engagements associated with the deal using the Deal ID. GET /crm/v3/objects/deals/{dealId}/associations/emails
2. Fetch Email Details: For each email, get the details like hs_email_text, hs_email_subject, and hs_email_from_email. GET /engagements/v1/engagements/{engagementId}
This will give you all the emails linked to the deal.