Bidder - インベントリ属性サービス
- [アーティクル]
-
-
読み取り専用インベントリ属性サービスを使用して、Xandr システムに登録されているインベントリ属性を確認します。 これらの ID は、入札要求の inventory_audits
オブジェクトで提供されます。
REST API
HTTP メソッド |
エンドポイント |
説明 |
GET |
https://api.adnxs.com/inventory-attribute |
Xandr システムのすべてのインベントリ属性を表示するには |
GET |
https://api.adnxs.com/inventory-attribute/INVENTORY_ATTRIBUTE_ID |
特定のインベントリ属性に関する情報を表示するには |
JSON フィールド
フィールド |
種類 |
説明 |
id |
int |
インベントリ属性の ID。 |
last_activity |
string |
インベントリ属性が最後に変更されたとき。 |
name |
string |
インベントリ属性名。 |
例
すべてのインベントリ属性を表示する (以下の出力は変更される場合があります)
curl -b cookies -c cookies "https://api.adnxs.com/inventory-attribute"
{
"response": {
"status": "OK",
"count": 10,
"start_element": null,
"num_elements": null,
"inventory_attributes": [
{
"id": 2,
"name": "Political",
"last_activity": "2010-10-19 19:26:08"
},
{
"id": 4,
"name": "Social media",
"last_activity": "2010-10-19 19:26:08"
},
{
"id": 6,
"name": "Photo & video sharing",
"last_activity": "2010-10-19 19:26:08"
},
{
"id": 8,
"name": "Forums (moderated)",
"last_activity": "2010-10-19 19:26:08"
},
{
"id": 10,
"name": "Forums (unmoderated)",
"last_activity": "2010-10-19 19:26:08"
},
{
"id": 12,
"name": "Incentivized clicks",
"last_activity": "2010-10-19 19:26:08"
},
{
"id": 14,
"name": "Non-english languages",
"last_activity": "2010-10-19 19:26:08"
},
{
"id": 16,
"name": "Streaming media",
"last_activity": "2010-10-19 19:26:08"
},
{
"id": 17,
"name": "Toolbars, plugins, or extensions",
"last_activity": "2012-12-04 21:00:58"
},
{
"id": 29,
"name": "Contextual Nudity",
"last_activity": "2014-04-22 19:11:56"
}
]
}
}