次の方法で共有


Creative Custom Request Template Type サービス

注:

仲介は、Microsoft 収益化 Ad Server のお客様のみが利用できます。

仲介に関するコンテキストについては、「 仲介によるインベントリの販売」を参照してください。

Creative Custom Request Template Type Service は、さまざまな仲介パートナーと統合するために必要な特定の種類のクリエイティブ カスタム要求テンプレートを一覧表示する読み取り専用サービスです。 Creative Custom Request Template Service を使用して新しい カスタム要求テンプレート を作成する場合は、このサービスで一覧表示される種類のいずれかを指定する必要があります。 また、適切なクエリ文字列パラメーターとクリエイティブ マクロを使用して、仲介パートナーに要求を行う方法について説明します。

詳細については、「 Creative Custom Request Template Service」を参照してください。

REST API

HTTP メソッド エンドポイント 説明
GET https://api.appnexus.com/creative-custom-request-template-type すべてのテンプレートの種類を表示します。
GET https://api.appnexus.com/creative-custom-request-template-type?id=TEMPLATE_TYPE_ID 個々のテンプレートの種類を表示します。
GET https://api.appnexus.com/creative-custom-request-template-type/meta フィルター処理と並べ替えに使用できるフィールドを表示します。

JSON フィールド

名前 説明
id int このテンプレートの種類の一意の ID。
並べ替え: はい
フィルター: はい
name string システムで使用されるテンプレートの種類の内部名。
並べ替え: はい
フィルター: はい
display_name string ユーザー インターフェイスに適したテンプレートの種類の "印刷名"。
並べ替え: はい
フィルター: はい
last_modified date このテンプレートの種類が最後に更新された日時。
並べ替え: はい
フィルター: はい

すべてのテンプレートの種類を表示する

{code}
$ curl -b cookies 'https://api.appnexus.com/creative-custom-request-template-type'
{
    "response": {
        "status": "OK",
        "count": 5,
        "start_element": 0,
        "num_elements": 100,
        "creative-custom-request-templates-types": [
            {
                "id": 1,
                "name": "none",
                "display_name": "",
                "last_modified": "2013-07-10 14:04:57"
            },
            {
                "id": 2,
                "name": "inmobi",
                "display_name": "InMobi",
                "last_modified": "2013-07-10 14:04:57"
            },
            {
                "id": 3,
                "name": "millenial",
                "display_name": "Millenial Media",
                "last_modified": "2013-07-10 14:04:57"
            },
            {
                "id": 4,
                "name": "mojiva",
                "display_name": "Mojiva",
                "last_modified": "2013-07-10 14:04:57"
            },
            {
                "id": 5,
                "name": "jumptap",
                "display_name": "Jumptap",
                "last_modified": "2013-07-10 14:04:57"
            }
        ],
        "dbg_info": {
            "instance": "29.bm-hbapi.prod.nym1",
            "s1ave_hit": false,
            "db": "master",
            "awesomesauce_cache_used": false,
            "count_cache_used": false,
            "warnings": [],
            "time": 43.544054031372,
            "start_microtime": 1373907586.5736,
            "version": "1.13.53",
            "s1ave_miss": "no_service_index",
            "s1ave_lag": 0,
            "member_last_modified_age": 1373907586
        }
    }
}
{code}

個々のテンプレートの種類を表示する

{code}
$ curl -b cookies https://api.appnexus.com/creative-custom-request-template-type?id=1
{
    "response": {
        "status": "OK",
        "count": 1,
        "start_element": 0,
        "num_elements": 100,
        "creative-custom-request-template-type": {
            "id": 1,
            "name": "none",
            "display_name": "",
            "last_modified": "2013-07-10 14:04:57"
        },
        "dbg_info": {
            "instance": "29.bm-hbapi.prod.nym1",
            "s1ave_hit": false,
            "db": "master",
            "awesomesauce_cache_used": false,
            "count_cache_used": false,
            "warnings": [],
            "time": 223.9089012146,
            "start_microtime": 1373908192.0697,
            "version": "1.13.53",
            "s1ave_miss": "no_service_index",
            "s1ave_lag": 0,
            "member_last_modified_age": 1373908192
        }
    }
}
{code}