英語で読む

次の方法で共有


Bidders - レーティング サービス

読み取り専用レーティング サービスを使用して、Xandr システムに登録されているビデオ コンテンツレーティングを確認します。 ビデオ コンテンツ フィールドは、広告申込情報または取引広告申込情報のターゲットに追加できます。

REST API

HTTP メソッド エンドポイント 説明
GET https://api.adnxs.com/video-content-rating 定義されているすべてのレーティングを表示するには
GET https://api.adnxs.com/video-content-rating?id=<id value> 定義されたレーティングを表示するには

JSON フィールド

フィールド 種類 説明
id int レーティングに関連付けられている Xandr 参照 ID
last_modified timestamp 最終変更時刻
name string POST/PUT で必須
ビデオ分類参照値

定義されているすべての評価を取得するには

curl -b cookies -c cookies "https://api.adnxs.com/video-content-rating"  
{
  "response": {
    "status": "OK",
    "start_element": 0,
    "num_elements": 100,
    "video-content-ratings": [
      {
        "id": 1,
        "name": "all",
        "last_modified": "2020-09-21 13:59:38"
      },
      {
        "id": 2,
        "name": "children",
        "last_modified": "2020-09-21 13:59:38"
      },
      {
        "id": 3,
        "name": "teens",
        "last_modified": "2020-09-21 13:59:38"
      },
      {
        "id": 4,
        "name": "young_adults",
        "last_modified": "2020-09-21 13:59:38"
      },
      {
        "id": 5,
        "name": "adults",
        "last_modified": "2020-09-21 13:59:38"
      }
    ],
    "count": 5,
    "dbg_info": {
      "warnings": [],
      "version": "1.0.194",
      "output_term": "video-content-ratings"
    }
  }
}