Hello,
I am using two endpoints : email events and marketing-emails (
/marketing-emails/v1/emails)
in the marketing-emails we have the id of the email along with email dimensions :
"id": 1234567890,
// Integer; the id of the email.
I want to join on the results from the email events endpoint to better qualify email events. But the ids available in the email events results are the campaign ids (i don’t see something looking like an email id)
How do I qualify email events with email dimensions ?
Thank you for your help,
Tiphaine
Hello,
I am using two endpoints : email events and marketing-emails (
/marketing-emails/v1/emails)
in the marketing-emails we have the id of the email along with email dimensions :
"id": 1234567890,
// Integer; the id of the email.
I want to join on the results from the email events endpoint to better qualify email events. But the ids available in the email events results are the campaign ids (i don’t see something looking like an email id)
How do I qualify email events with email dimensions ?
Thank you for your help,
Tiphaine
You need to map the data from the email events to the corresponding email details. Typically, the email events endpoint provides campaign IDs, not individual email IDs. To qualify email events with email dimensions, you should first use the campaign ID from the email events to identify all emails associated with that campaign. Then, use the Marketing Emails API (/marketing-emails/v1/emails) to retrieve the details of those emails, including their IDs and other relevant dimensions.