AdLabels
Query information about ad labels. Accessing Ad Information requires the ads_read permission.
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 | The Id of Ad label. |
| Target | String | The Ad Account Id to retrieve labels from. |
| Name | String | The name of the Ad label. |
| CreatedTime | Datetime | The time when the Ad label was created. |
| UpdatedTime | Datetime | When the Ad label was last updated. |