[舊版]{class="badge informative"}

建立個人化產品建議 create-personalized-offer

TIP
Adobe Journey Optimizer 的新決策功能「決策」現在可透過程式碼型體驗和電子郵件管道使用!了解更多

個人化優惠是根據適用性規則和限制的可自訂行銷訊息。

您可以對Offer Library API發出POST要求,同時提供容器ID,藉此建立個人化優惠方案。

Accept和Content-Type標題 accept-and-content-type-headers

下表顯示請求標頭中包含​ Content-Type ​和​ Accept ​欄位的有效值:

標題名稱
價值
接受
application/vnd.adobe.platform.xcore.xdm.receipt+json; version=1
Content-Type
application/schema-instance+json; version=1; schema="https://ns.adobe.com/experience/offer-management/personalized-offer;version=0.5"

API格式

POST /{ENDPOINT_PATH}/{CONTAINER_ID}/instances
參數
說明
範例
{ENDPOINT_PATH}
存放庫API的端點路徑。
https://platform.adobe.io/data/core/xcore/
{CONTAINER_ID}
個人化優惠所在的容器。
e0bd8463-0913-4ca1-bd84-6309134ca1f6

要求

curl -X POST \
  'https://platform.adobe.io/data/core/xcore/e0bd8463-0913-4ca1-bd84-6309134ca1f6/instances' \
  -H 'Accept: application/vnd.adobe.platform.xcore.xdm.receipt+json; version=1' \
  -H 'Content-Type: application/schema-instance+json; version=1;  schema="https://ns.adobe.com/experience/offer-management/personalized-offer;version=0.5"' \
-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 '{
        "xdm:name": "Sale offer",
        "xdm:status": "draft",
        "xdm:representations": [
        {
                "xdm:components": [
                {
                        "dc:language": [
                            "en"
                    ],
                        "@type": "https://ns.adobe.com/experience/offer-management/content-component-html",
                        "dc:format": "text/html"
                }
                ],
                "xdm:placement": "xcore:offer-placement:124e0be5699743d3"
        }
    ],
        "xdm:selectionConstraint": {
            "xdm:startDate": "2023-10-01T16:00:00Z",
            "xdm:endDate": "2021-12-13T16:00:00Z",
            "xdm:eligibilityRule": "xcore:eligibility-rule:124e0faf5b8ee89b"
        },
        "xdm:rank": {
            "xdm:priority": 1
    },
        "xdm:cappingConstraint": {
            "xdm:globalCap": 150
    },
        "xdm:tags": [
            "xcore:tag:124e147572cd7866"
    ]
}'

回應

成功的回應會傳回新建立的個人化優惠方案資訊,包括其唯一的執行個體識別碼和位置@id。 您可在後續步驟中使用執行個體ID來更新或刪除您的個人化優惠。

{
    "instanceId": "0f4bc230-13df-11eb-bc55-c11be7252432",
    "@id": "xcore:personalized-offer:124e181c8b0d7878",
    "repo:etag": 1,
    "repo:createdDate": "2023-10-21T20:50:32.018624Z",
    "repo:lastModifiedDate": "2023-10-21T20:50:32.018624Z",
    "repo:createdBy": "{CREATED_BY}",
    "repo:lastModifiedBy": "{MODIFIED_BY}",
    "repo:createdByClientId": "{CREATED_CLIENT_ID}",
    "repo:lastModifiedByClientId": "{MODIFIED_CLIENT_ID}"
}

限制 limitations

行動Experience Edge工作流程目前不支援優惠宣告和某些優惠限制,例如CappingCapping欄位值會指定某個優惠方案在所有使用者中顯示的次數。 如需詳細資訊,請參閱優惠適用性規則和限制檔案

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