I have a Flow which sends out several emails throughout a 5 - 6 week period.
After each “Send Email” event I need to pass some JSOM code to a webhook into our backend CRM (bespoke) system
The below is the JSON, but I cannot locate or push the Email Subject or Email Body.
{
"KlaviyoID": "{{ person.KlaviyoID }}",
"idPatient": "{{ person.id }}",
"first_name": "{{ person.first_name }}",
"last_name": "{{ person.last_name }}",
"email": "{{ person.email }}",
"phone_number": "{{ person.phone_number }}",
"email_subject": "{{email.subject}}",
"email_body": "{{ email.body }}",
"lead_source": "Brochure Signup",
"process": "subscribe"
}