개인화된 오퍼 나열 list-personalized-offers
맞춤형 오퍼는 자격 규칙 및 제한에 따라 사용자 정의 가능한 마케팅 메시지입니다.
Offer Library API에 대한 단일 GET 요청을 수행하여 모든 개인화된 오퍼 목록을 볼 수 있습니다.
API 형식
GET /{ENDPOINT_PATH}/offers?offer-type=personalized&{QUERY_PARAMS}
매개변수
설명
예
{ENDPOINT_PATH}지속성 API의 끝점 경로입니다.
https://platform.adobe.io/data/core/dps{QUERY_PARAMS}결과를 필터링 기준으로 사용할 선택적 쿼리 매개 변수입니다.
limit=2요청
curl -X GET 'https://platform.adobe.io/data/core/dps/offers?offer-type=personalized&limit=2' \
-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}'
쿼리 매개 변수 사용 using-query-parameters
쿼리 매개 변수를 사용하여 리소스를 나열할 때 결과를 페이지로 지정하고 필터링할 수 있습니다.
페이징 paging
페이징에 가장 일반적인 쿼리 매개 변수는 다음과 같습니다.
매개변수
설명
예
property선택적 속성 필터:
- 속성은 AND 작업별로 그룹화됩니다.
- 매개 변수는 다음과 같이 반복될 수 있습니다. property={PROPERTY_EXPR}[&property={PROPERTY_EXPR2}…] 또는 property={PROPERTY_EXPR1}[,{PROPERTY_EXPR2}…]
- 속성 표현식이
[ !]field[op]value형식이며op에[==,!=,<=,>=,<,>,~]이(가) 있어 정규 표현식을 지원합니다.
property=name!=abc&property=id~.*1234.*&property=description equivalent with property=name!=abc,id~.*1234.*,description.orderBy특정 속성별로 결과를 정렬합니다. 이름 앞에 - 를 추가하면 (orderby=-name) 내림차순 (Z-A)으로 이름별로 항목이 정렬됩니다. 경로 표현식은 점으로 구분된 경로 형식입니다. 이 매개 변수는 다음과 같이 반복될 수 있습니다.
orderby=field1[,-fields2,field3,...]orderby=id,-namelimit반환되는 배치 수를 제한합니다.
limit=5응답
성공적인 응답은 액세스 권한이 있는 오퍼와 함께 있는 개인화된 오퍼 목록을 반환합니다.
{
"results": [
{
"created": "2023-05-15T14:35:16.781+00:00",
"modified": "2023-05-15T14:38:26.691+00:00",
"etag": 2,
"schemas": [
"https://ns.adobe.com/experience/offer-management/personalized-offer;version=0.15"
],
"createdBy": "{CREATED_BY}",
"lastModifiedBy": "{MODIFIED_BY}",
"id": "personalizedOffer1234",
"name": "Test personalized offer with frequency constraint",
"status": "draft",
"representations": [
{
"channel": "https://ns.adobe.com/xdm/channel-types/web",
"placement": "offerPlacement1234",
"components": [
{
"type": "html",
"format": "text/html",
"language": [
"en-us"
],
"content": "Hello You qualify for our Discount of 60%"
}
]
}
],
"selectionConstraint": {
"startDate": "2022-07-27T05:00:00.000+00:00",
"endDate": "2023-07-29T05:00:00.000+00:00",
"profileConstraintType": "none"
},
"rank": {
"priority": 0
},
"cappingConstraint": {},
"frequencyCappingConstraints": [
{
"enabled": false,
"limit": 1,
"startDate": "2023-05-15T14:25:49.622+00:00",
"endDate": "2023-05-25T14:25:49.622+00:00",
"scope": "global",
"entity": "offer",
"repeat": {
"enabled": false,
"unit": "month",
"unitCount": 1
}
}
]
}
],
"count": 1,
"total": 1,
"_links": {
"self": {
"href": "/offers?offer-type=personalized&href={SELF_HREF}",
"type": "application/json"
}
}
}
개인화된 오퍼가 응답에서 여러 개 누락된 경우 페이지 매김을 수행합니다.
응답
{
"results": [...],
"count": 2,
"total": 43,
"_links": {
"self": {
"href": "/offers?orderby=-modified&limit=2&offer-type=PERSONALIZED",
"type": "application/json"
},
"next": {
"href": "/offers?orderby=-modified&limit=2&start={TIMESTAMP}&offer-type=PERSONALIZED",
"type": "application/json"
}
}
}
지표
설명
total개인화된 오퍼의 수입니다.
count이 응답에서 반환된 오퍼의 수입니다.
_links.next.href과(와) 같은 /offers?orderby=-modified&limit=2&start={TIMESTAMP}&offer-type=PERSONALIZED에서 끝점을 검색하고 API에 추가합니다.
API 형식
GET /{ENDPOINT_PATH}/offers?orderby=-modified&limit=2&start={TIMESTAMP}&offer-type=PERSONALIZED
{
"results": [...],
"count": 2,
"total": 43,
"_links": {
"self": {...},
"next": {
"href": "/offers?orderby=-modified&limit=2&start={TIMESTAMP}&offer-type=PERSONALIZED",
"type": "application/json"
}
}
}
마찬가지로 첫 페이지에 있지 않고 개인화된 오퍼의 이전 페이지를 검색해야 하는 경우 href의 _links.prev 값을 사용하십시오. 아래 예에 표시된 대로 이전 결과 세트를 가져오도록 URL에 요청합니다.
응답
{
"results": [...],
"count": 2,
"total": 43,
"_links": {
"self": {...},
"next": {...},
"prev": {
"href": "/offers?orderby=-modified&limit=2&start={TIMESTAMP}&offer-type=PERSONALIZED",
"type": "application/json"
}
}
}
recommendation-more-help
b22c9c5d-9208-48f4-b874-1cefb8df4d76