Newsletter Subscription
Reports that a user signed up for a newsletter. Identification event.
Report this event to track subscriptions (regardless of whether the user has an account) and associate the anonymous user ID with the hashed email address entered by the user. This event does not accept custom user ID types, and its main use is to enable personalized email features.
Parameters
- name: Human-readable name, not used to identify an event type
- properties: A container for the event properties as specified in the following table:
| Property | Description | Type |
|---|---|---|
| dyType | Must be "newsletter-subscription-v1" | String |
| cuid | User identifier value. ! Must not include a / character | Max string length is 250 | String |
| cuidType | Use this identifier type to identify users across devices (for example, customer_id, account_id, or hefor SHA-256 hashed email). Note: Do not include any personal information in this ID. | String |
| secondaryIdentifiers type, value | Optionally, add a second method for identification across devices and Experience OS apps. Your secondary identifier can be anything you decide, including a hashed email address, phone number, CRM ID, e-commerce ID, and so on. You must define the identifier type in your section settings . If you decide to use a phone number as the secondary identifier, handle it as follows: | String |
| Note: Identifiers with special requirements | Hashed email (he) and hashed phone number (hashedPhoneNumber) must use SHA-256 hashing.Phone number ( phoneNumber) must conform to the E.164 format. Contact your technical account manager to enable using phoneNumber as an identifier in your script-based events. |
Example: Implementation via script
DY.API("event", {
name: "Newsletter Subscription",
properties: {
dyType: "newsletter-subscription-v1",
cuid: "156498191",
cuidType: "EcommerceID"
}
});Example: Implementation via script, using secondary identifiers
DY.API("event", {
name: "Newsletter Subscription",
properties: {
dyType: "newsletter-subscription-v1",
cuid: "62eccc43b550b012b7ea7fb07e64baafb1508d8b715a55148ccf0f3322eab1a1",
cuidType: "he",
secondaryIdentifiers: [
{ type: "phoneNumber", value: "+12195551212" },
{ type: "ecommerceID", value: "12345" },
{ type: "vipClub", value: "678910" }
]
}
});Example: Implementation via Experience API (server-side)
"events":[
{
"name": "Newsletter Subscription",
"properties": {
"dyType": "newsletter-subscription-v1",
"cuidType": "clientId",
"cuid": "62eccc43b550b012b7ea7fb07e64baafb1508d8b715a55148ccf0f3322eab1a1"
}
}
]
Example: Implementation via Experience API, using secondary identifiers
"event":[
{
"name": "Newsletter Subscription",
"properties": {
"dyType": "newsletter-subscription-v1",
"cuid": "62eccc43b550b012b7ea7fb07e64baafb1508d8b715a55148ccf0f3322eab1a1",
"cuidType": "clientId",
"secondaryIdentifiers": [
{ "type": "hashedPhoneNumber", "value": "49c7b1f6d24121078d8f37997b433586fe9a28e2dc4fbd0803eac237ac82255e" },
{ "type": "ecommerceID", "value": "12345" },
{ "type": "vipClub", "value": "678910" }
]
}
}
]Updated 2 months ago