決定規則是新增至個人化優惠的限制,並套用至設定檔以判斷適用性。
下表顯示包含 Content-Type 請求標頭中的欄位:
頁首名稱 | 值 |
---|---|
Content-Type | application/json |
API格式
POST /{ENDPOINT_PATH}/offer-rules
參數 | 說明 | 範例 |
---|---|---|
{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/dps/offer-rules' \
-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": "Sales rule",
"description": "Decisioning rule for sales",
"condition": {
"type": "PQL",
"format": "pql/text",
"value": "profile.person.name.firstName.equals(\"Joe\", false)"
},
"definedOn": {
"profile": {
"schema": {
"ref": "https://ns.adobe.com/xdm/context/profile_union",
"version": "1"
},
"referencePaths": [
"person.name.firstName"
]
}
}
}'
回應
成功的回應會傳回關於新建立決定規則的資訊,包括位置 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}"
}