[舊版]{class="badge informative"}
清單決定規則 list-decision-rules
TIP
Adobe Journey Optimizer 的新決策功能「決策」現在可透過程式碼型體驗和電子郵件管道使用!了解更多
決定規則是新增至個人化優惠的限制,並套用至設定檔以判斷適用性。 您可以透過對Offer Library API執行單一GET請求,來檢視容器內現有的決定規則清單。
API格式
GET /{ENDPOINT_PATH}/{CONTAINER_ID}/queries/core/search?schema={SCHEMA_ELIGIBILITY_RULE}&{QUERY_PARAMS}
參數
說明
範例
{ENDPOINT_PATH}存放庫API的端點路徑。
https://platform.adobe.io/data/core/xcore/{CONTAINER_ID}決策規則所在的容器。
e0bd8463-0913-4ca1-bd84-6309134ca1f6{SCHEMA_ELIGIBILITY_RULE}定義與決定規則關聯的結構描述。
https://ns.adobe.com/experience/offer-management/eligibility-rule;version=0.3{QUERY_PARAMS}篩選結果的選用查詢引數。
limit=1使用查詢引數 using-query-parameters
您可以在列出資源時,使用查詢引數來頁面和篩選結果。
分頁 paging
分頁最常見的查詢引數包括:
參數
說明
範例
q在選取的欄位中搜尋的可選查詢字串。 查詢字串應為小寫,並可由雙引號包圍,以防止加以代碼化及逸出特殊字元。 字元
+ - = && || > < ! ( ) { } [ ] ^ \" ~ * ? : \ /具有特殊意義,在查詢字串中出現時應該以反斜線逸出。defaultqop將AND或OR運運算元套用至q查詢字串引數中的值。
AND / ORfield要限制搜尋的選用欄位清單。 此引數可重複使用,如下所示: field=field1[,field=field2,…]和(路徑運算式採用點分隔路徑的形式,例如_instance.xdm:name)
_instance.xdm:nameorderBy依特定屬性排序結果。 在標題(
-)前新增orderby=-title將會依標題以遞減順序(Z-A)排序專案。-repo:createdDatelimit限制傳回的決策規則數。
limit=5要求
curl -X GET \
'https://platform.adobe.io/data/core/xcore/e0bd8463-0913-4ca1-bd84-6309134ca1f6/queries/core/search?schema=https://ns.adobe.com/experience/offer-management/eligibility-rule;version=0.3&limit=1' \
-H 'Accept: *,application/vnd.adobe.platform.xcore.hal+json; schema="https://ns.adobe.com/experience/xcore/hal/results"' \
-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}'
回應
成功的回應會傳回決定規則清單,這些規則會顯示在您有權存取的容器中。
{
"containerId": "e0bd8463-0913-4ca1-bd84-6309134ca1f6",
"schemaNs": "https://ns.adobe.com/experience/offer-management/eligibility-rule;version=0.3",
"requestTime": "2023-10-22T04:14:12.676802Z",
"_embedded": {
"results": [
{
"instanceId": "36693c30-0377-11eb-9dd8-d781cc064407",
"schemas": [
"https://ns.adobe.com/experience/offer-management/eligibility-rule;version=0.3"
],
"productContexts": [
"acp"
],
"repo:etag": 3,
"repo:createdDate": "2023-09-30T23:46:51.379003Z",
"repo:lastModifiedDate": "2023-10-02T05:06:36.780806Z",
"repo:createdBy": "{CREATED_BY}",
"repo:lastModifiedBy": "{MODIFIED_BY}",
"repo:createdByClientId": "{CREATED_CLIENT_ID}",
"repo:lastModifiedByClientId": "{MODIFIED_CLIENT_ID}",
"_instance": {
"xdm:name": "Qualified for mortgage products",
"offerui:segmentModel": {
"name": "Qualified for mortgage products",
"canHaveFolder": true,
"isMissingAnsibleModel": false,
"description": "",
"deprecated": {
"reason": "",
"status": false
},
"schema": {
"name": "_xdm.context.profile",
"id": "some id"
},
"schemaName": "",
"expression": {
"xEventAttributesContainer": {
"itemType": "eventTypeCardContainer",
"logicalOperator": "then",
"exclude": false,
"items": []
},
"logicalOperator": "and",
"isValid": true,
"profileAttributesContainer": {
"itemType": "segmentContainer",
"logicalOperator": "and",
"exclude": false,
"items": [
{
"component": {
"__entity__": true,
"id": "profile._xcoree2etesting.productCategory",
"type": "n"
},
"isPlaceholder": false,
"comparisonType": "equals",
"value": [
"mortgage"
]
}
]
}
},
"mergePolicyId": "3558157a-19cb-40b4-ba13-a5f5ce31b011",
"namespace": "ups"
},
"xdm:condition": {
"xdm:format": "pql/text",
"xdm:type": "PQL",
"xdm:value": "_xcoree2etesting.productCategory.equals(\"mortgage\", false)"
},
"xdm:definedOn": {},
"xdm:description": "",
"@id": "xcore:eligibility-rule:12333714edbf49e6"
},
"_links": {
"self": {
"name": "https://ns.adobe.com/experience/offer-management/eligibility-rule;version=0.3#36693c30-0377-11eb-9dd8-d781cc064407",
"href": "/e0bd8463-0913-4ca1-bd84-6309134ca1f6/instances/36693c30-0377-11eb-9dd8-d781cc064407",
"@type": "https://ns.adobe.com/experience/offer-management/eligibility-rule;version=0.3"
}
},
"sandboxName": "ode-prod-va7-edge-testing"
}
],
"total": 8,
"count": 1
},
"_links": {
"self": {
"href": "/e0bd8463-0913-4ca1-bd84-6309134ca1f6/queries/core/search?schema=https://ns.adobe.com/experience/offer-management/eligibility-rule;version=0.3&limit=1",
"@type": "https://ns.adobe.com/experience/xcore/hal/results"
},
"next": {
"href": "/e0bd8463-0913-4ca1-bd84-6309134ca1f6/queries/core/search?start=36693c30-0377-11eb-9dd8-d781cc064407&orderby=instanceId&schema=https://ns.adobe.com/experience/offer-management/eligibility-rule;version=0.3&limit=1",
"@type": "https://ns.adobe.com/experience/xcore/hal/results"
}
}
}
recommendation-more-help
b22c9c5d-9208-48f4-b874-1cefb8df4d76