首页 > 解决方案 > 通过巧妙的点击发送个性化推送通知活动?

问题描述

我正在使用 CT apis 创建推送通知的活动。下面是有效载荷:

{
  "name": "campaign name",
  "estimate_only": false,
  "target_mode": "push",
  "where": {
    "event_name": "App Installs",
    "from": 20190705,
    "to": 20210608,
    "common_profile_properties": {
      "profile_fields": [
        {
          "name": "location",
          "operator": "equals",
          "value": "HOME"
        }
      ]
    }
  },
  "respect_frequency_caps": false,
  "content": {
    "title": "hello,",
    "body": "how you doing today, checkout our latestes product"
  },
  "devices": [
    "android"
  ],
  "when": "now"
}

我在 ct 中有用户名。现在我希望通过在 msg 的正文和标题中添加用户名来发送个性化的 msg,以便在这个活动中所有人都收到带有他们名字的 msg,但 CT 文档没有任何与此相关的内容。你能帮我理解怎么做吗?

标签: androidpush-notificationpersonalizationclevertapproduct-management

解决方案


推荐阅读