Acoustic Exchange has identified and defined recognized events that often happen during email exchanges.
As an endpoint publisher, call api-exchange-us-1.goacoustic.com/v1/event to publish the event. The following example illustrates a typical JSON payload. This example is based on the Email Open event.
POST v1/event
{
“channel” : “Email”,
“identifiers” : [
{
“name” : “email”,
“value” : “jdoe@example.com”
}
],
“events” : [
{
“code” : “emailOpen”,
“timestamp” : “2015-06-14T20:11:12Z”,
“attributes” : [
{
“name” : “eventName”,
“value” : “Email Open”,
“type” : “string”
}
{
“name” : “messageId”,
“value” : “1211943”,
“type” : “string”
}
{
“name” : “subjectLine”,
“value” : “Please come back!”,
“type” : “string”
}
{
“name” : “mailingtemplateId”,
“value” : “GN8ntGD”,
“type” : “string”
}
]
}
]
}
Comments
0 comments
Article is closed for comments.