의사 결정 나열 list-decisions
결정에는 오퍼의 선택을 알려주는 논리가 포함되어 있습니다.
Offer Library API에 대한 단일 GET 요청을 수행하여 컨테이너 내의 모든 의사 결정 목록을 볼 수 있습니다.
API 형식
GET /{ENDPOINT_PATH}/{CONTAINER_ID}/queries/core/search?schema={SCHEMA_ACTIVITIES}&{QUERY_PARAMS}
매개변수
설명
예
{ENDPOINT_PATH}저장소 API의 끝점 경로입니다.
https://platform.adobe.io/data/core/xcore/{CONTAINER_ID}결정이 위치한 컨테이너입니다.
e0bd8463-0913-4ca1-bd84-6309134ca1f6{SCHEMA_ACTIVITIES}의사 결정과 연관된 스키마를 정의합니다.
https://ns.adobe.com/experience/offer-management/offer-activity;version=0.5{QUERY_PARAMS}결과를 필터링 기준으로 사용할 선택적 쿼리 매개 변수입니다.
limit=2요청
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/offer-activity;version=0.5&limit=2' \
-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}'
매개변수
설명
예
q선택한 필드에서 검색할 선택적 쿼리 문자열입니다. 쿼리 문자열은 소문자여야 하며 토큰화되지 않고 특수 문자를 이스케이프 처리할 수 있도록 큰따옴표로 묶을 수 있습니다.
+ - = && || > < ! ( ) { } [ ] ^ \" ~ * ? : \ / 문자는 특별한 의미가 있으므로 쿼리 문자열에 표시할 때 백슬래시로 이스케이프해야 합니다.defaultqopq 쿼리 문자열 매개 변수의 값에 AND 또는 OR 연산자를 적용합니다.
AND / ORfield검색을 제한할 선택적 필드 목록입니다. 이 매개 변수는 다음과 같이 반복될 수 있습니다. field=field1[,field=field2,…] 및 (경로 표현식은 _instance.xdm:name과 같이 점으로 구분된 경로 형식입니다.)
_instance.xdm:nameorderBy특정 속성별로 결과를 정렬합니다. 제목(
-) 앞에 orderby=-title을(를) 추가하면 제목별로 내림차순(Z-A)으로 항목이 정렬됩니다.-repo:createdDatelimit반환되는 결정 수를 제한합니다.
limit=5응답
성공적인 응답은 액세스 권한이 있는 컨테이너 내에 있는 의사 결정 목록을 반환합니다.
{
"results": [
{
"created": "2022-07-05T09:02:02.835+00:00",
"modified": "2022-08-16T21:40:58.573+00:00",
"etag": 12,
"schemas": [
"https://ns.adobe.com/experience/offer-management/offer-activity;version=0.8"
],
"createdBy": "{CREATED_BY}",
"lastModifiedBy": "{MODIFIED_BY}",
"id": "offerDecision1234",
"name": "Test Decision One",
"status": "live",
"startDate": "2022-05-18T00:09:57.706+00:00",
"endDate": "2032-08-13T21:40:58.235+00:00",
"fallback": "fallbackOffer1234",
"criteria": [
{
"placements": [
"offerPlacement1234",
"offerPlacement5678"
],
"rank": {
"priority": 0,
"order": {
"orderEvaluationType": "ranking-strategy",
"rankingStrategy": "123456789123"
}
},
"profileConstraint": {
"profileConstraintType": "none"
},
"optionSelection": {
"filter": "offerCollection1234"
}
}
]
},
{
"created": "2022-09-05T14:12:13.773+00:00",
"modified": "2022-09-05T14:12:13.773+00:00",
"etag": 1,
"schemas": [
"https://ns.adobe.com/experience/offer-management/offer-activity;version=0.8"
],
"createdBy": "{CREATED_BY}",
"lastModifiedBy": "{MODIFIED_BY}",
"id": "offerDecision5678",
"name": "Test Decision Two",
"status": "live",
"startDate": "2022-08-31T21:00:00.000+00:00",
"endDate": "2023-02-03T22:00:00.000+00:00",
"fallback": "fallbackOffer5678",
"criteria": [
{
"placements": [
"offerPlacement1234"
],
"rank": {
"priority": 2
},
"optionSelection": {
"filter": "offerCollection5678"
}
},
{
"placements": [
"offerPlacement5678"
],
"rank": {
"priority": 1
},
"optionSelection": {
"filter": "offerCollection1234"
}
}
]
}
],
"count": 2,
"total": 21,
"_links": {
"self": {
"href": "/offer-decisions?href={SELF_HREF}&limit=2",
"type": "application/json"
},
"next": {
"href": "/offer-decisions?href={NEXT_HREF}&limit=2",
"type": "application/json"
}
}
}
recommendation-more-help
b22c9c5d-9208-48f4-b874-1cefb8df4d76