HubSpot · Example Payload

Marketing Emal Api Transactional Email Request Example

AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

Marketing Emal Api Transactional Email Request Example is an example object payload from HubSpot, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

emailIdmessagecontactPropertiescustomProperties

Example Payload

Raw ↑
{
  "emailId": 12345678,
  "message": {
    "to": "recipient@example.com",
    "from": "noreply@yourcompany.com",
    "sendId": "unique-send-id-123",
    "replyTo": [
      "support@yourcompany.com"
    ],
    "cc": [
      "jsmith@example.com"
    ],
    "bcc": [
      "jsmith@example.com"
    ]
  },
  "contactProperties": {
    "firstname": "John",
    "lastname": "Doe",
    "company": "Acme Corp"
  },
  "customProperties": {
    "order_number": "ORD-12345",
    "order_total": "$99.99"
  }
}