指定市場エリアサービス
- [アーティクル]
-
-
読み取り専用の指定市場領域 (DMA) サービスを使用すると、キャンペーンでのターゲット設定のために指定された市場領域の ID を取得できます (プロファイル サービスを参照)。dma_targets
REST API
HTTP メソッド |
エンドポイント |
説明 |
GET |
https://api.appnexus.com/dma |
指定された市場領域をすべて表示する |
GET |
https://api.appnexus.com/dma?id=ID |
特定の指定された市場領域を表示する |
GET |
https://api.appnexus.com/dma?name=NAME |
特定の指定された市場領域を表示する |
GET |
https://api.appnexus.com/dma?like_name=XX |
状態コードである特定の状態 XX のすべての指定された市場領域を表示する |
GET |
https://api.appnexus.com/dma/meta |
フィルター処理および並べ替え可能なフィールドを確認する |
JSON フィールド
フィールド |
種類 |
説明 |
active |
ブール型 |
の場合 true 、DMA はターゲット設定に使用できます。 false の場合、DMA の位置情報データがないため、配信できません。 |
code |
string |
DMA のコード。 |
country_code |
string |
DMA が属する国の ISO コード 。 Country Service を使用して、国コードの完全な一覧を取得できます。 |
country_id |
int |
DMA が属する国の ID。 Country Service を使用して、国 ID の完全な一覧を取得できます。 |
country_name |
string |
DMA が属する国の名前。 Country Service を使用して、国名の完全な一覧を取得できます。 |
id |
int |
DMA の ID。 |
name |
string |
DMA の名前。 |
例
指定された市場領域をすべて表示する
$ curl -b cookies -c cookies 'https://api.appnexus.com/dma'
{
"response": {
"status": "OK",
"count": 211,
"start_element": null,
"num_elements": null,
"dmas": [
{
"id": 500,
"code": 500,
"name": "Portland-Auburn ME",
"country_id": 233,
"country_name": "United States",
"country_code": "US",
"active": true,
"last_modified": "2013-02-15 14:16:07"
},
{
"id": 501,
"code": 501,
"name": "New York NY",
"country_id": 233,
"country_name": "United States",
"country_code": "US",
"active": true,
"last_modified": "2013-02-15 14:16:07"
},
{
"id": 502,
"code": 502,
"name": "Binghamton NY",
"country_id": 233,
"country_name": "United States",
"country_code": "US",
"active": true,
"last_modified": "2013-02-15 14:16:07"
},
{
"id": 503,
"code": 503,
"name": "Macon GA",
"country_id": 233,
"country_name": "United States",
"country_code": "US",
"active": true,
"last_modified": "2013-02-15 14:16:07"
},
{
"id": 504,
"code": 504,
"name": "Philadelphia PA",
"country_id": 233,
"country_name": "United States",
"country_code": "US",
"active": true,
"last_modified": "2013-02-15 14:16:07"
},
{
"id": 505,
"code": 505,
"name": "Detroit MI",
"country_id": 233,
"country_name": "United States",
"country_code": "US",
"active": true,
"last_modified": "2013-02-15 14:16:07"
},
{
"id": 506,
"code": 506,
"name": "Boston MA-Manchester NH",
"country_id": 233,
"country_name": "United States",
"country_code": "US",
"active": true,
"last_modified": "2013-02-15 14:16:07"
},
...
]
}
}