Marketing data specification

Marketing data helps enrich profiles, and activate campaigns through various channels. After activation the Hub allows you to measure the impact of the campaign among different target segments.

The Lexer Marketing Data specification provides a standard format for your email and SMS event engagement to enrich your customer profiles into the CDXP. When data is provided using this API, this data will enrich your customer’s profiles with additional attributes. 

More detail about the attributes that can be created from this API are in the links below:

For more information about these attributes you can find our full attribute list here.

Email Subscribe events

A sample of a email subscribe event record: 

// Marketing API: Email Subscribe Events
{
"records": [
{
"link": {
"email": "jane@fake.com"
},
"action_at": "2023-09-20T11:01:01Z",
"list": {
"id": "7bff7a...",
"name": "All Customers List"
},
"status": "subscribed"
}
]
}

Required fields

  • link: Where a customer record is defined by a single identifying link (email, email_sha256, email_md5, mobile, customer_id or external_id). To add more links for unification purposes, you will need to provide Unification data
  • action_at: The date and time the customer subscribed. 
  • status: The customer's Subscription Status. This could include, "subscribed", "unsubscribed", "list_subscribed", "list_unsubscribed".

Email Send events

A sample of an email event record: 

// Marketing API: Email Send Events
{
"records": [
{
"link": {
"email": "jane@fake.com"
},
"action_at": "2023-09-20T11:01:01Z",
"campaign_id": "Black friday Menswear Teaser Aug 2020",
"list": {
"id": "7bff7a...",
"name": "All Customers List"
},
"from": {
"name": "Jane Doe",
"email": "jane@fake.com"
},
"to": {
"name": "Jane Doe",
"email": "jane@fake.com"
},
"subject": "Dress Best this Black Friday",
"body": "Lorem ipsum do in mollit consectetur dolore magna irure exercitation."
}
]
}

Required fields 

  • link: Where a customer record is defined by a single identifying link (email, email_sha256, email_md5, mobile, customer_id or external_id). To add more links for unification purposes, you will need to provide Unification data
  • action_at: The date and time the Email was sent. 
  • campaign_id: The marketing Campaign Identifier or Name.

Email Open events

A sample of an email event record: 

// Marketing API: Email Open Events
{
"records": [
{
"link": {
"email": "jane@fake.com"
},
"action_at": "2023-09-20T11:01:01Z",
"campaign_id": "Black friday Menswear Teaser Aug 2020",
"list": {
"id": "7bff7a...",
"name": "All Customers List"
},
"from": {
"name": "Jane Doe",
"email": "jane@fake.com"
},
"to": {
"name": "Jane Doe",
"email": "jane@fake.com"
}
}
]
}

Required fields

  • link: Where a customer record is defined by a single identifying link (email, email_sha256, email_md5, mobile, customer_id or external_id). To add more links for unification purposes, you will need to provide Unification data
  • action_at: The date and time the Email was opened. 
  • campaign_id: The marketing Campaign Identifier or Name.

Email Click events

A sample of a email click event record: 

// Marketing API: Email Click Events
{
"records": [
{
"link": {
"email": "jane@fake.com"
},
"action_at": "2023-09-20T11:01:01Z",
"campaign_id": "Black friday Menswear Teaser Aug 2020",
"list": {
"id": "7bff7a...",
"name": "All Customers List"
},
"from": {
"name": "Jane Doe",
"email": "jane@fake.com"
},
"to": {
"name": "Jane Doe",
"email": "jane@fake.com"
},
"clicked_link": {
"name": "string",
"url": "url"
}
}
]
}

Required fields

  • link: Where a customer record is defined by a single identifying link (email, email_sha256, email_md5, mobile, customer_id or external_id). To add more links for unification purposes, you will need to provide Unification data
  • action_at: The date and time the customer clicked through to the accompanied link within the email. 
  • campaign_id: The marketing Campaign Identifier or Name.

Email Bounce events

A sample of a email bounce event record: 

// Marketing API: Email Bounce Events
{
"records": [
{
"link": {
"email": "jane@fake.com"
},
"action_at": "2023-09-20T11:01:01Z",
"campaign_id": "Black friday Menswear Teaser Aug 2020",
"list": {
"id": "7bff7a...",
"name": "All Customers List"
},
"from": {
"name": "Jane Doe",
"email": "jane@fake.com"
},
"to": {
"name": "Jane Doe",
"email": "jane@fake.com"
}
}
]
}

Required fields

  • link: Where a customer record is defined by a single identifying link (email, email_sha256, email_md5, mobile, customer_id or external_id). To add more links for unification purposes, you will need to provide Unification data
  • action_at: The date and time the email bounced. 
  • campaign_id: The marketing Campaign Identifier or Name.

SMS Subscribe events

A sample of an SMS subscribe event record: 

// Marketing API: SMS Subscribe Events
{
"records": [
{
"link": {
"email": "jane@fake.com"
},
"action_at": "2023-09-20T11:01:01Z",
"list": {
"id": "7bff7a...",
"name": "All Customers List"
},
"status": "subscribed"
}
]
}

Required fields

  • link: Where a customer record is defined by a single identifying link (email, email_sha256, email_md5, mobile, customer_id or external_id). To add more links for unification purposes, you will need to provide Unification data
  • action_at: The date and time the customer subscribed. 
  • status: The customer's Subscription Status. This could include, "subscribed", "unsubscribed", "list_subscribed", "list_unsubscribed".

SMS Send events

A sample of an SMS send event record: 

// Marketing API: SMS Send Events
{
"records": [
{
"link": {
"email": "jane@fake.com"
},
"action_at": "2023-09-20T11:01:01Z",
"campaign_id": "Black friday Menswear Teaser Aug 2020",
"list": {
"id": "7bff7a...",
"name": "All Customers List"
},
"body": "Lorem ipsum do in mollit consectetur dolore magna irure exercitation.",
"from": {
"name": "My Brand",
"number": "61400000000"
},
"to": {
"name": "My Brand",
"number": "61400000000"
}
}
]
}

Required fields

  • link: Where a customer record is defined by a single identifying link (email, email_sha256, email_md5, mobile, customer_id or external_id). To add more links for unification purposes, you will need to provide Unification data
  • action_at: The date and time the SMS was sent. 
  • campaign_id: The marketing Campaign Identifier or Name.

SMS Click events

A sample of an SMS click event record: 

// Marketing API: SMS Click Events
{
"records": [
{
"link": {
"email": "jane@fake.com"
},
"action_at": "2023-09-20T11:01:01Z",
"campaign_id": "Black friday Menswear Teaser Aug 2020",
"list": {
"id": "7bff7a...",
"name": "All Customers List"
},
"from": {
"name": "My Brand",
"number": "61400000000"
},
"to": {
"name": "My Brand",
"number": "61400000000"
}
}
]
}

Required fields

  • link: Where a customer record is defined by a single identifying link (email, email_sha256, email_md5, mobile, customer_id or external_id). To add more links for unification purposes, you will need to provide Unification data
  • action_at: The date and time the customer clicked through to the accompanied link within the SMS. 
  • campaign_id: The marketing Campaign Identifier or Name.

That’s a wrap on Marketing data specifications

This page has covered some samples of the marketing data schema itself, and the requirements of the schema. If you have any questions, please reach out to your Success Manager. 

Updated:
June 21, 2023
Did this page help you?
Thank you! Your feedback has been received!
Oops! Something went wrong while submitting the form, for assistance please contact support@lexer.io
Understanding APIs
Data
Developer APIs
Javascript Tag basics
Data
Javascript Tag
Welcome to Lexer!
Fundamentals
Getting started
Identity Resolution
Fundamentals
Getting started
Our glossary
Fundamentals
Getting started
Integrations
Fundamentals
Setup
My account
Fundamentals
Setup
Manage team
Fundamentals
Setup
Group permissions
Fundamentals
Setup
Classifications
Fundamentals
Setup
Out of the box segments
Fundamentals
Setup
Lexi your AI companion
Fundamentals
Getting started
Browser guide
Fundamentals
Security
Corporate networks
Fundamentals
Security
Multi-factor authentication
Fundamentals
Security
Single sign-on
Fundamentals
Security
Lexer's ultimate troubleshooting guide
Fundamentals
Troubleshooting
Troubleshooting tech issues
Fundamentals
Troubleshooting
Troubleshooting integrations
Fundamentals
Troubleshooting
Troubleshooting Activate
Fundamentals
Troubleshooting
Troubleshooting Respond
Fundamentals
Troubleshooting
Help! My data is missing from the Hub
Fundamentals
Troubleshooting
How data is ingested into the CDP
Data
Self Serve Onboarding
Getting started onboarding data
Data
Self Serve Onboarding
Providing JSON data to Lexer
Data
Self Serve Onboarding
Providing CSV data to Lexer
Data
Self Serve Onboarding
Upload using SFTP
Data
Self Serve Onboarding
Secure file upload
Data
Self Serve Onboarding
Upload using S3
Data
Self Serve Onboarding
Lexer data specification
Data
Data Specification
Customer data specification
Data
Data Specification
Commerce data specification
Data
Data Specification
Marketing data specification
Data
Data Specification
Compliance data specification
Data
Data Specification
Rate limits
Data
Developer APIs
Product imagery
Data
Formatting
Currency conversion
Data
Formatting
APIs overview
Data
Developer APIs
Dataset management
Data
Datasets
Chatbot API
Data
Developer APIs
Activity API
Data
Developer APIs
Read API
Data
Developer APIs
Javascript Tag use cases
Data
Javascript Tag
Export to CSV
Measure
Listen
Data in the CDXP
Data
Customer Data
CRM data
Data
Customer Data
Transaction data
Data
Customer Data
Email engagement data
Data
Customer Data
Experian data enrichment
Data
Customer Data
File upload API
Data
Developer APIs
Segment overview
Understand
Segment
Creating segments
Understand
Segment
Smart Search
Understand
Segment
Export attribute results
Understand
Segment
Fixing a disabled segment
Understand
Segment
Profile tab
Understand
Segment
Event Explorer
Understand
Segment
Lexer's attributes
Understand
Attributes
Predictive attributes
Understand
Attributes
Attribute value types
Understand
Attributes
Compare segments
Understand
Compare
Compare attributes
Understand
Compare
Activate overview
Engage
Activate
Ongoing activations
Engage
Activate
Audience splits
Engage
Activate
A/B splits
Engage
Activate
Control group splits
Engage
Activate
Inbox filtering
Engage
Respond
Ignored Senders
Engage
Respond
Forms for service
Engage
Respond
Workflow states
Engage
Respond
Bulk changes
Engage
Respond
Scheduled replies
Engage
Respond
Message templates
Engage
Respond
Customer profiles
Engage
Respond
Grouped messages
Engage
Respond
Automation rules
Engage
Respond
Redact messages
Engage
Respond
Contact Reporting
Engage
Contact
Serve Forms
Engage
Serve
Serve Reports
Engage
Serve
Serve Currency
Engage
Serve
Track overview
Measure
Track
Track Tables
Measure
Track
Activity overview
Measure
Activity
Team report
Measure
Activity
Cases report
Measure
Activity
Listen overview
Measure
Listen
Searching in Listen
Measure
Listen
Tier filters
Measure
Listen
Boolean search
Measure
Listen
Saved dives
Measure
Listen
Email notifications
Measure
Listen
Twitter data
Measure
Listen
Facebook data
Measure
Listen
Visualize overview
Measure
Visualize
Curate feed
Measure
Visualize
Report overview
Measure
Listen
Lexer Product Recommender → Klaviyo Integration
Grow
Lexer Product Recommender → Klaviyo Integration
Where do your best customers live? Use geographic insights to maximize media spend and conversion
Grow
Where do your best customers live? Use geographic insights to maximize media spend and conversion
Suppression audiences: How to use them and maximize your media effectiveness
Enrich
Suppression audiences: How to use them and maximize your media effectiveness
Measure campaign effectiveness: Track your KPIs and report on campaign performance
Enrich
Measure campaign effectiveness: Track your KPIs and report on campaign performance
Converting prospects: Acquire customers from your current, engaged prospect base (and save your ad spend!)
Acquire
Converting prospects: Acquire customers from your current, engaged prospect base (and save your ad spend!)
Understanding customer intent: Effective message personalization for buyers who shop outside their gender
Grow
Understanding customer intent: Effective message personalization for buyers who shop outside their gender
Deepen customer understanding: Use third-party data to identify insights for personalized messaging and increased engagement
Grow
Deepen customer understanding: Use third-party data to identify insights for personalized messaging and increased engagement
Basket analysis: Increasing customer lifetime value through targeted product bundling
Grow
Basket analysis: Increasing customer lifetime value through targeted product bundling
Persona building: Personalize your messaging for maximum return on your campaign investments
Grow
Persona building: Personalize your messaging for maximum return on your campaign investments
Driving customer loyalty: Identify, keep, and grow your most loyal customers
Retain
Driving customer loyalty: Identify, keep, and grow your most loyal customers
Increasing customer lifetime value: Upselling strategies
Grow
Increasing customer lifetime value: Upselling strategies
Reactivating lapsed customers: Retention and growth
Retain
Reactivating lapsed customers: Retention and growth
Welcome offer strategies: Using the Hub for analysis
Acquire
Welcome offer strategies: Using the Hub for analysis
Creating customer forms: Best practices
Enrich
Creating customer forms: Best practices
Connecting your MarTech stack with Lexer!
Enrich
Connecting your MarTech stack with Lexer!
Identifying win-back customers using the Second Last Order: Date attribute
Retain
Identifying win-back customers using the Second Last Order: Date attribute
Understanding customers' purchasing habits: Order Sequence filter
Grow
Understanding customers' purchasing habits: Order Sequence filter
Maximizing customer communications in Respond
Retain
Maximizing customer communications in Respond
Using Product Recommendation in the Hub to encourage repeat purchases
Grow
Using Product Recommendation in the Hub to encourage repeat purchases
Encouraging customer loyalty using birthday campaigns
Retain
Encouraging customer loyalty using birthday campaigns
Increasing customer lifetime value: Converting your one-time buyers into two-time buyers
Grow
Increasing customer lifetime value: Converting your one-time buyers into two-time buyers
Collecting zero-party data using Lexer Forms
Enrich
Collecting zero-party data using Lexer Forms
Measuring your data over time with Track
Enrich
Measuring your data over time with Track
UTM Creation Guidelines
UTM Creation Guidelines
UTM Creation Guidelines
Brand Assets
Brand Assets
Brand Assets
GTM guide to creating marketing materials with Lexer
GTM guide to creating marketing materials with Lexer
GTM guide to creating marketing materials with Lexer
How to use the Lexer Form Builder
How to use the Lexer Form Builder
How to use the Lexer Form Builder
Explore our standard integrations
Explore our standard integrations
Explore our standard integrations
Operating a CDP Practice LP
Operating a CDP Practice LP
Operating a CDP Practice LP
LP Sales Enablement
LP Sales Enablement
LP Sales Enablement
Video Training Courses LP
Video Training Courses LP
Video Training Courses LP
Purpose and Mission
Purpose and Mission
Purpose and Mission
Brand & Marketing LP
Brand & Marketing LP
Brand & Marketing LP
Stage 3 - QBRs and Customer insights
Stage 3 - QBRs and Customer insights
Stage 3 - QBRs and Customer insights
Client Onboarding Journey
Client Onboarding Journey
Client Onboarding Journey
Start your CDP Practice
Start your CDP Practice
Start your CDP Practice
Lexer Messaging
Lexer Messaging
Lexer Messaging
Pain point conversations
Pain point conversations
Pain point conversations
Lexer Ideal Customer Profile & Positioning
Lexer Ideal Customer Profile & Positioning
Lexer Ideal Customer Profile & Positioning
Referral Partner Program Overview
Referral Partner Program Overview
Referral Partner Program Overview
Demo Hub Guide
Demo Hub Guide
Demo Hub Guide