대상자 검색

세분화 서비스 API를 사용하거나 UI의 대상 포털을 통해 배치 세분화를 사용하여 평가된 모든 대상을 검색할 수 있습니다.

/segment/definitions 끝점에 대한 GET 요청을 통해 조직 내에서 일괄 처리 세그먼테이션을 사용하여 평가되는 모든 세그먼트 정의 목록을 검색합니다.

API 형식

일괄 처리 세분화를 사용하여 평가된 세그먼트 정의를 검색하려면 요청 경로에 쿼리 매개 변수 evaluationInfo.batch.enabled=true을(를) 포함해야 합니다.

GET /segment/definitions?evaluationInfo.batch.enabled=true

요청

일괄 처리가 활성화된 모든 세그먼트 정의를 나열하는 샘플 요청
curl -X GET \
  'https://platform.adobe.io/data/core/ups/segment/definitions?evaluationInfo.batch.enabled=true' \
  -H 'Authorization: Bearer {ACCESS_TOKEN}' \
  -H 'Content-Type: application/json' \
  -H 'x-api-key: {API_KEY}' \
  -H 'x-gw-ims-org-id: {ORG_ID}' \
  -H 'x-sandbox-name: {SANDBOX_NAME}'

응답

성공적인 응답은 배치 세그먼테이션을 사용하여 평가되는 조직의 세그먼트 정의 배열과 함께 HTTP 상태 200을 반환합니다.

조직의 모든 일괄 처리 세분화 평가 세그먼트 정의 목록을 포함하는 샘플 응답
{
    "segments": [
        {
            "id": "15063cb-2da8-4851-a2e2-bf59ddd2f004",
            "schema": {
                "name": "_xdm.context.profile"
            },
            "ttlInDays": 30,
            "imsOrgId": "{ORG_ID}",
            "sandbox": {
                "sandboxId": "",
                "sandboxName": "",
                "type": "production",
                "default": true
            },
            "name": " People who are NOT on their homepage ",
            "expression": {
                "type": "PQL",
                "format": "pql/text",
                "value": "select var1 from xEvent where var1._experience.analytics.endUser.firstWeb.webPageDetails.isHomePage = false"
            },
            "evaluationInfo": {
                "batch": {
                    "enabled": true
                },
                "continuous": {
                    "enabled": false
                },
                "synchronous": {
                    "enabled": false
                }
            },
            "creationTime": 1572029711000,
            "updateEpoch": 1572029712000,
            "updateTime": 1572029712000
        },
        {
            "id": "f15063cb-2da8-4851-a2e2-bf59ddd2f004",
            "schema": {
                "name": "_xdm.context.profile"
            },
            "ttlInDays": 30,
            "imsOrgId": "{ORG_ID}",
            "sandbox": {
                "sandboxId": "",
                "sandboxName": "",
                "type": "production",
                "default": true
            },
            "name": "Homepage_continuous",
            "description": "People who are on their homepage - continuous",
            "expression": {
                "type": "PQL",
                "format": "pql/text",
                "value": "select var1 from xEvent where var1._experience.analytics.endUser.firstWeb.webPageDetails.isHomePage = true"
            },
            "evaluationInfo": {
                "batch": {
                    "enabled": true
                },
                "continuous": {
                    "enabled": true
                },
                "synchronous": {
                    "enabled": false
                }
            },
            "creationTime": 1572021085000,
            "updateEpoch": 1572021086000,
            "updateTime": 1572021086000
        }
    ],
    "page": {
        "totalCount": 2,
        "totalPages": 1,
        "sortField": "creationTime",
        "sort": "desc",
        "pageSize": 2,
        "limit": 100
    },
    "link": {}
}

반환된 세그먼트 정의에 대한 자세한 내용은 세그먼트 정의 끝점 안내서를 참조하십시오.

Audience Portal의 필터를 사용하여 조직 내에서 일괄 세분화에 대해 활성화된 모든 대상을 검색할 수 있습니다. 필터 목록을 표시하려면 필터 아이콘 아이콘을 선택하십시오.

Audience Portal에서 필터 아이콘이 강조 표시되어 있습니다.

사용 가능한 필터 내에서 빈도 업데이트(으)로 이동하여 "일괄 처리"을(를) 선택하십시오. 이 필터를 사용하면 배치 세분화를 사용하여 평가되는 조직의 모든 대상이 표시됩니다.

일괄 처리 업데이트 빈도를 선택하여 일괄 처리 세분화를 사용하여 평가되는 조직의 모든 대상을 표시합니다.

Experience Platform에서 대상자를 보는 방법에 대한 자세한 내용은 대상자 포털 안내서를 참조하십시오.