Bidders - コンテンツ カテゴリ サービス
読み取り専用コンテンツ カテゴリ サービスを使用して、Xandr システムに登録されているコンテンツ カテゴリを確認します。 これらの ID は、入札要求のinventory_audits オブジェクトで提供されます。
コンテンツ カテゴリは、2 レベルの階層に配置されます。 最上位のカテゴリと子カテゴリがあります。 子カテゴリには、親を指すparent_category_idがあります。 最上位のカテゴリには null parent_category_idがあります。
REST API
HTTP メソッド | エンドポイント | 説明 |
---|---|---|
GET | https://api.adnxs.com/content-category | Xandr システム内のすべてのコンテンツ カテゴリを表示するには。 |
GET | https://api.adnxs.com/content-category/CONTENT_CATEGORY_ID | 特定のコンテンツ カテゴリに関する情報を表示するには。 |
JSON フィールド
フィールド | 種類 | 説明 |
---|---|---|
description |
string | コンテンツ カテゴリの説明。 |
id |
int | コンテンツ カテゴリの ID。 |
is_system |
bool | true の場合、コンテンツ カテゴリは Xandr によって定義されます。 |
last_modified |
timestamp | このコンテンツ カテゴリが最後に変更された日時。 |
name |
string | コンテンツ カテゴリの名前。 |
parent_category |
object | カテゴリが親カテゴリの子である場合、親の ID と名前は次の形式で一覧表示されます。"parent_category": { "id":10, "name": "Games" } |
例
すべてのコンテンツ カテゴリを表示する (以下の出力は切り捨てられます)
curl -b cookies -c cookies "https://api.adnxs.com/content-category"
{
"response": {
"status": "OK",
"count": 325,
"start_element": null,
"num_elements": null,
"content_categories": [
{
"id": 4,
"name": "Pets & Animals",
"description": null,
"is_system": true,
"last_modified": "2010-10-24 02:43:16",
"parent_category": null
},
{
"id": 5,
"name": "Fun & Trivia",
"description": null,
"is_system": true,
"last_modified": "2010-10-24 02:43:16",
"parent_category": {
"id": 10,
"name": "Arts & Entertainment"
}
},
{
"id": 6,
"name": "Autos & Vehicles",
"description": null,
"is_system": true,
"last_modified": "2010-10-24 02:43:16",
"parent_category": null
},
{
"id": 7,
"name": "Beauty & Personal Care",
"description": null,
"is_system": true,
"last_modified": "2010-03-04 19:14:12",
"parent_category": null
},
[...]
],
"count": 326,
"num_elements": 5,
"start_element": 1,
"status": "OK"
}
}