Mailmodo · Example Payload

Mailmodo Add Event Example

EmailInteractive EmailAMP for EmailMarketing AutomationTransactional EmailCampaignsJourneysCustomer Engagement

Mailmodo Add Event Example is an example object payload from Mailmodo, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://api.mailmodo.com/api/v1/addEvent",
    "headers": {
      "mmApiKey": "$MAILMODO_API_KEY",
      "Content-Type": "application/json"
    },
    "body": {
      "email": "subscriber@example.com",
      "event_name": "checkout_abandoned",
      "event_properties": {
        "cartValue": 89.5,
        "items": 2,
        "currency": "USD"
      }
    }
  },
  "response": {
    "success": true,
    "message": "Event recorded"
  }
}