次の方法で共有


オフライン属性製品グループ サービス

オフライン 属性製品グループ サービスは、Xandr 製品カタログから製品グループ情報 (ID) を検出して検索するために使用されます。 広告申込情報でオフライン属性が有効になっている場合、このカタログは、製品カテゴリ、ブランド製品、製品ライン、または特定の製品に対する広告申込情報のオフライン販売実績を追跡するために使用されます。

REST API

HTTP メソッド エンドポイント 説明
GET https://api.appnexus.com/offline-attribution-product-group すべての製品グループを表示します。
GET https://api.appnexus.com/offline-attribution-product-group?search=STRING で製品グループを検索します string

JSON フィールド

一般

フィールド 種類 説明
id int 特定の製品グループの ID。
offline_attribution_provider_member_id int オフライン 属性カタログの情報を提供するエンティティの ID。
provider_member_name string オフライン 属性カタログの情報を提供するエンティティの名前。
vendor_product_code string レポートする製品のベンダーが提供するコード。
offline_attribution_category_id int オフライン 属性カテゴリのそれぞれの ID。 この ID は、サービス応答でユーザーに返されます。
category_name string 特定の製品カテゴリに使用される名前 (: SOFT DRINKS)。
カテゴリ名は、製品グループの ID を検索するために使用されます。
brand_name string 特定のブランドに使用される名前 (: COCA-COLA COMPANY)。
product_high_name string 特定の製品ラインの名前 (: COCA-COLA)。
product_low_name string 特定の製品名の名前 (: DIET COKE)。

オフライン 属性製品グループの ID 要求

要求

$ curl -b cookies -c cookies -X GET 'https://api.appnexus.com/offline-attribution-product-group'

応答

{
    "response": {
        "status": "OK",
        "start_element": 0,
        "num_elements": 100,
        "offline-attribution-product-groups": [
            {
                "id": 3449,
                "offline_attribution_provider_member_id": 12515,
                "provider_member_name": "NCS",
                "vendor_product_code": "2968042",
                "offline_attribution_category_id": 3446,
                "category_name": "ADULT INCONTINENCE",
                "offline_attribution_brand_id": 3430,
                "brand_name": "BUTTERFLY HEALTH, INC.",
                "offline_attribution_product_high_id": 3421,
                "product_high_name": "BUTTERFLY",
                "offline_attribution_product_low_id": null,
                "product_low_name": "null",
                "last_modified": "2021-02-22 18:04:45",
                "created_on": "2020-02-22 18:04:45",
                "deleted": 0
            }
        ],
        "count": 1,
        "dbg_info": {
            "warnings": [],
            "version": "local",
            "output_term": "offline-attribution-product-groups"
        }
    }
}

応答を含む検索クエリ

要求

// The search term needs to be URL-encoded:
$ curl -b cookies -c cookies -X GET 'https://api.appnexus.com/offline-attribution-product-group?search=BRICK%20RIVER%20CIDER%20CO'

応答

{
    "response": {
        "status": "OK",
        "start_element": 0,
        "num_elements": 100,
        "offline-attribution-product-groups": [
            {
                "id": 3496,
                "offline_attribution_provider_member_id": 12515,
                "provider_member_name": "NCS",
                "vendor_product_code": "5559739",
                "offline_attribution_category_id": 3506,
                "category_name": "ALCOHOLIC CIDER",
                "offline_attribution_brand_id": 3499,
                "brand_name": "BRICK RIVER CIDER CO",
                "offline_attribution_product_high_id": 3486,
                "product_high_name": "BRICK RIVER CIDER CO",
                "offline_attribution_product_low_id": null,
                "product_low_name": "null",
                "last_modified": "2021-02-22 18:05:09",
                "created_on": "2021-02-22 18:05:09",
                "deleted": 0
            }
        ],
        "count": 1,
        "dbg_info": {
            "warnings": [],
            "version": "local",
            "output_term": "offline-attribution-product-groups"
        }
    }
    }