분류 API 메서드 taxonomic-api-methods

Audience Manager 일반 분류법을 볼 수 있는 메서드입니다. 이 선택적 분류 체계는 트레이트를 업계 표준 카테고리로 구성합니다.

NOTE
이러한 방법으로는 새 분류법 범주를 만들거나 특성을 분류할 수 없습니다. 트레이트를 분류하려면 적절한 트레이트를 지정합니다 categoryId 트레이트 만들기 또는 업데이트 메서드를 사용합니다.

특정 분류 체계 반환 return-specific-taxonomy

A GET 지정된 분류법 범주에 대한 세부 정보를 반환하는 메서드입니다.

요청

GET https://api.demdex.com/v1/taxonomies/0/<categoryId>

응답

성공한 응답이 을 반환합니다. 200 OK 지정된 ID에 대한 범주. 실패한 요청이 반환됩니다 404 No Content ID가 없는 경우.

{
    "crUID": 158,
    "name": "Arts & Entertainment",
    "upUID": 158,
    "description": "Arts & Entertainment",
    "categoryID": 1,
    "parentCategoryID": 0
}

모든 분류 범주 반환 return-all-taxonomy-categories

A GET 배열에서 최상위 카테고리 목록을 반환하는 메서드입니다.

요청

GET https://api.demdex.com/v1/taxonomies/0/

응답

간결성을 위해 잘립니다.

[
    {
        "crUID": 158,
        "name": "Arts & Entertainment",
        "upUID": 158,
        "description": "Arts & Entertainment",
        "categoryID": 1,
        "parentCategoryID": 0
    },
    {
        "crUID": 158,
        "name": "Automotive",
        "upUID": 158,
        "description": "Automotive",
        "categoryID": 2,
        "parentCategoryID": 0
    },
    {
        "crUID": 158,
        "name": "Business",
        "upUID": 158,
        "description": "Business",
        "categoryID": 3,
        "parentCategoryID": 0
    }
]

분류 체계적 하위 범주 반환 return-taxonomy-sub-categories

A GET 배열에서 지정된 상위 범주에 대한 하위 범주를 반환하는 메서드입니다.

요청

GET https://api.demdex.com/v1/taxonomies/0/<categoryId>/childCategories/

응답

성공한 응답이 을 반환합니다. 200 OK 지정된 ID에 대한 범주. 실패한 요청이 반환됩니다 404 No Content ID가 없는 경우. 간결성을 위해 잘립니다.

[
    {
        "crUID": 158,
        "name": "Books & Literature",
        "upUID": 158,
        "description": "Books & Literature",
        "categoryID": 25,
        "parentCategoryID": 1
    },
    {
        "crUID": 158,
        "name": "Celebrity Fan/Gossip",
        "upUID": 158,
        "description": "Celebrity Fan/Gossip",
        "categoryID": 49,
        "parentCategoryID": 1
    },
    {
        "crUID": 158,
        "name": "Fine Art",
        "upUID": 158,
        "description": "Fine Art",
        "categoryID": 72,
        "parentCategoryID": 1
    }
]
recommendation-more-help
de293fbf-b489-49b0-8daa-51ed303af695