创建个性化优惠 create-personalized-offer

个性化优惠是基于资格规则和约束的可自定义营销消息。

您可以通过向以下网站发出POST请求来创建个性化优惠: Offer Library API。

接受和内容类型标头 accept-and-content-type-headers

下表显示了包含 Content-Type 请求标头中的字段:

标题名称
Content-Type
application/json

API格式

POST /{ENDPOINT_PATH}/offers/{ID}?offer-type=personalized
参数
描述
示例
{ENDPOINT_PATH}
持久性API的端点路径。
https://platform.adobe.io/data/core/dps/

请求

curl -X POST 'https://platform.adobe.io/data/core/dps/offers?offer-type=personalized' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer {ACCESS_TOKEN}' \
-H 'x-api-key: {API_KEY}' \
-H 'x-gw-ims-org-id: {IMS_ORG}' \
-H 'x-sandbox-name: {SANDBOX_NAME}' \
-d '{
    "name": "Test personalized offer with frequency constraint",
    "status": "draft",
    "representations": [
        {
            "channel": "https://ns.adobe.com/xdm/channel-types/web",
            "placement": "offerPlacement1234",
            "components": [
                {
                    "type": "html",
                    "format": "text/html",
                    "language": [
                        "en-us"
                    ],
                    "content": "Hello You qualify for our Discount of 60%"
                }
            ]
        }
    ],
    "selectionConstraint": {
        "startDate": "2022-07-27T05:00:00.000+00:00",
        "endDate": "2023-07-29T05:00:00.000+00:00",
        "profileConstraintType": "none"
    },
    "rank": {
        "priority": 0
    },
    "cappingConstraint": {},
    "frequencyCappingConstraints": [
        {
            "enabled": false,
            "limit": 1,
            "startDate": "2023-05-15T14:25:49.622+00:00",
            "endDate": "2023-05-25T14:25:49.622+00:00",
            "scope": "global",
            "entity": "offer",
            "repeat": {
                "enabled": false,
                "unit": "month",
                "unitCount": 1
            }
        }
    ]
}'

响应

成功的响应会返回新创建的个性化优惠的详细信息,包括id。 您可以使用 id 在后续步骤中更新或删除您的个性化优惠。

{
    "etag": 1,
    "createdBy": "{CREATED_BY}",
    "lastModifiedBy": "{MODIFIED_BY}",
    "id": "{ID}",
    "sandboxId": "{SANDBOX_ID}",
    "createdDate": "2023-05-31T15:09:11.771Z",
    "lastModifiedDate": "2023-05-31T15:09:11.771Z",
    "createdByClientId": "{CREATED_CLIENT_ID}",
    "lastModifiedByClientId": "{MODIFIED_CLIENT_ID}"
}

限制 limitations

移动设备当前不支持优惠呈现和一些优惠限制 Experience Edge 工作流,例如 Capping. 此 Capping 字段值指定某个选件在所有用户中可以显示的次数。 有关更多详细信息,请参阅 优惠资格规则和限制文档.

recommendation-more-help
b22c9c5d-9208-48f4-b874-1cefb8df4d76