Contents

BrandsReportingAd

Ad metadata for brands report rows.

Declaration

object BrandsReportingAd

Properties

NameTypeDescription
idint64

The ad’s unique identifier.

namestring

The ad name as configured at report time.

deletedboolean

Whether the ad has been soft-deleted.

statusBrandsReportingAd.Status

Possible values: ENABLED, PAUSED.

systemStatusBrandsReportingAd.SystemStatus

Possible values: RUNNING, NOT_RUNNING.

systemStatusReasons[AdSystemStatusReason]

System-applied reasons contributing to the current systemStatus.

systemStatusLimitingReasons[string]

Status-limiting reasons applied based on advertiser and system factors.

adAccountIdint64

The ad account this ad belongs to.

campaignIdint64

The campaign this ad belongs to.

adGroupIdint64

The ad group this ad belongs to.

creationTimedate-time

Timestamp when the ad was created (ISO 8601).

modificationTimedate-time

Timestamp of the ad’s last modification (ISO 8601).

displayStatusstring

System-computed, rolled-up delivery state combining ad, ad group, and campaign conditions.

creativeBrandsReportingCreative

See BrandsReportingCreative for details.

deviceClassstring

Device class groupBy dimension value.

locationIdstring

Location ID groupBy dimension value.

supplyPlacementstring

Supply placement groupBy dimension value.

Discussion

The BrandsReportingAd object is the ad metadata embedded in brands ad report rows. It provides the full organizational context (adAccountId, campaignId, adGroupId) and the ad’s operational state (status, systemStatus, displayStatus) as captured at report time.

The creative field embeds a BrandsReportingCreative summary with the creative type and validity status. The system populates the brands-specific dimension fields (deviceClass, locationId, supplyPlacement) when the report’s groupBy specification includes those dimensions.

Example

{
  "id": 555666777,
  "name": "AwayFinder - Brands Ad",
  "deleted": false,
  "status": "ENABLED",
  "systemStatus": "RUNNING",
  "systemStatusReasons": [],
  "systemStatusLimitingReasons": [],
  "adAccountId": 123456789,
  "campaignId": 987654321,
  "adGroupId": 246813579,
  "creationTime": "2025-01-10T08:00:00.000",
  "modificationTime": "2025-01-15T09:30:00.000",
  "displayStatus": "RUNNING",
  "creative": {
    "id": 135792468,
    "creativeType": "LOCAL_ADS_SEARCH_CREATIVE",
    "systemStatus": "VALID"
  },
  "deviceClass": "IPHONE",
  "locationId": "1",
  "supplyPlacement": "MAPS_SEARCH_RESULTS"
}

Topics

Type Aliases

See Also