Each type of email activity performed within Amplemarket can be sent via a JSON request, so you can always connect Amplemarket with any data platform you want.
On Amplemarket, there are 3 different types of email activity:
- An email sent within a sequence
- An email sent within a reply sequence
- An email received from sequence or reply sequence
Below, you can find the JSON structure for the 3 different types of email activity.
Note: This is true for both automatic and manual emails in your sequences.
Notification for an email sent within a sequence
{ "from": "noreply@amplemarket.com", "to": [ "noreply@amplemarket.com", "noreply@amplemarket.com" ], "cc": [ "noreply@amplemarket.com" ], "bcc": [ "noreply@amplemarket.com" ], "date": "2022-09-15T11:33:47+00:00", "subject": "The subject of the message", "body": "The email message body in plaintext.", "is_reply": false, "id": "z5zkiwimqbavayhbq57v34afr", "linkedin_url": "https://www.linkedin.com/in/williamhgates", "dynamic_fields": { "first_name": "John", "last_name": "Doe", "company_name": "Amplemarket", "company_domain": "amplemarket.com", "company_email_domain": "amplemarket.com", "title": "Founder & CEO", "simplified_title": "CEO", "email": "noreply@amplemarket.com", "city": "San Francisco", "state": "California", "country": "United States", "industry": "Computer Software", "linkedin_url": "https://www.linkedin.com/in/williamhgates" }, "user": { "first_name": "Jane", "last_name": "Doe", "email": "luis@amplemarket.com" }, "sequence": { "name": "The name of the sequence", "start_date": "2022-09-12T11:33:47Z", "end_date": "2022-09-18T11:33:47Z" }, "sequence_stage": { "index": 3, "type": "email", "automatic": true } }
Notification for an email sent within a reply sequence
{ "from": "noreply@amplemarket.com", "to": [ "noreply@amplemarket.com", "noreply@amplemarket.com" ], "cc": [ "noreply@amplemarket.com" ], "bcc": [ "noreply@amplemarket.com" ], "date": "2022-09-18T11:20:32+00:00", "subject": "The subject of the message", "body": "The email message body in plaintext.", "is_reply": false, "id": "5uz3j7inbprdjpkdulhsydg9s", "linkedin_url": "https://www.linkedin.com/in/williamhgates", "dynamic_fields": { "first_name": "John", "last_name": "Doe", "company_name": "Amplemarket", "company_domain": "amplemarket.com", "company_email_domain": "amplemarket.com", "title": "Founder & CEO", "simplified_title": "CEO", "email": "noreply@amplemarket.com", "city": "San Francisco", "state": "California", "country": "United States", "industry": "Computer Software", "linkedin_url": "https://www.linkedin.com/in/williamhgates" }, "user": { "first_name": "Jane", "last_name": "Doe", "email": "luis@amplemarket.com" }, "reply_sequence": { "name": "The name of the reply sequence", "start_date": "2022-09-15T11:20:32Z", "end_date": "2022-09-21T11:20:32Z" }, "reply_sequence_stage": { "index": 1 } }
Notification for an email received from a prospect in your sequences
{ "from": "noreply@amplemarket.com", "to": [ "noreply@amplemarket.com", "noreply@amplemarket.com" ], "cc": [ "noreply@amplemarket.com" ], "bcc": [ "noreply@amplemarket.com" ], "date": "2022-09-18T13:12:00+00:00", "subject": "Re: The subject of the message", "body": "The email message body in plaintext.", "is_reply": true, "id": "6d3mi54v6hxrissb2zqgpq1xu", "linkedin_url": "https://www.linkedin.com/in/williamhgates",
"labels": ["Interested"] "dynamic_fields": { "first_name": "John", "last_name": "Doe", "company_name": "Amplemarket", "company_domain": "amplemarket.com", "company_email_domain": "amplemarket.com", "title": "Founder & CEO", "simplified_title": "CEO", "email": "noreply@amplemarket.com", "city": "San Francisco", "state": "California", "country": "United States", "industry": "Computer Software", "linkedin_url": "https://www.linkedin.com/in/williamhgates" }, "user": { "first_name": "Jane", "last_name": "Doe", "email": "luis@amplemarket.com" }, "sequence": { "name": "The name of the sequence", "start_date": "2022-09-12T11:33:47Z", "end_date": "2022-09-18T13:12:47Z" }, "sequence_stage": {
"index": 3
} }
Note: If the reply comes from a reply sequence, the fields labels
, sequence
, and sequence_stage
will be substituted by the fields reply_sequence
and reply_sequence_stage
.