AdLabels
広告ラベルに関する情報をクエリします。広告情報へのアクセスには、ads_read アクセス許可が必要です。
Table Specific Information
Ad labels associated with an ad.
Select
When querying ad labels, either the Id or Target must be used to filter results. For instance:
SELECT * FROM AdLabels WHERE Target = 'act_123456'
Additionally, UpdatedTime may be used with the > or >= operators to retrieve only records newer than a certain date. For instance:
SELECT * FROM AdLabels WHERE Target = 'act_123456' AND UpdatedTime > '01/01/2016'
Columns
| Name | Type | Description |
| ID [KEY] | String | 広告ラベルのID。 |
| Target | String | ラベルを取得する広告アカウントID。 |
| Name | String | 広告ラベルの名前。 |
| CreatedTime | Datetime | 広告ラベルの作成時刻。 |
| UpdatedTime | Datetime | 広告ラベルが最後に更新された時刻。 |