您可以通过向以下网站发出GET请求来查找特定决策规则: Offer Library 包含决策规则的API id
在请求路径中。
API格式
GET /{ENDPOINT_PATH}/offer-rules/{ID}
参数 | 描述 | 示例 |
---|---|---|
{ENDPOINT_PATH} |
持久性API的端点路径。 | https://platform.adobe.io/data/core/dps/ |
{ID} |
要查找的实体的ID。 | offerRule1234 |
请求
curl -X GET 'https://platform.adobe.io/data/core/dps/offer-rules/offerRule1234' \
-H 'Accept: *,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}'
响应
成功响应将返回您查找的特定决策规则的详细信息,包括有关其唯一决策规则的信息 id
.
{
"created": "2022-09-16T18:59:53.651+00:00",
"modified": "2022-09-16T18:59:53.651+00:00",
"etag": 1,
"schemas": [
"https://ns.adobe.com/experience/offer-management/eligibility-rule;version=0.3"
],
"createdBy": "{CREATED_BY}",
"lastModifiedBy": "{MODIFIED_BY}",
"id": "offerRule1234",
"name": "Californians with one or more purchases greater than $1000",
"condition": {
"type": "PQL",
"format": "pql/text",
"value": "homeAddress.stateProvince.equals(\"CA\", false) and (select var1 from xEvent where var1.eventType.equals(\"purchase\", true) and (var1.commerce.order.priceTotal = 1000.0 and var1.commerce.order.currencyCode.equals(\"USD\", false)))"
}
}