Contents

AppsReportingAd

Ad metadata for apps report rows.

Declaration

object AppsReportingAd

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.

statusAppsReportingAd.Status

Possible values: ENABLED, PAUSED.

systemStatusAppsReportingAd.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.

creativeAppsReportingCreative

See AppsReportingCreative for details.

countryOrRegionstring

Country or region groupBy dimension value, populated when countryOrRegion is specified in the request’s groupBy.

deviceClassstring

Device class groupBy dimension value, populated when deviceClass is specified in the request’s groupBy.

Discussion

The AppsReportingAd object is the ad metadata embedded in apps ad report rows. It captures the configuration and status of the ad at report time, providing the full organizational context (adAccountId, campaignId, adGroupId) alongside the ad’s operational state (status, systemStatus, displayStatus).

The creative field embeds an AppsReportingCreative summary capturing the creative type and system status, without needing a separate lookup.

Example

{
  "id": 555666777,
  "name": "AwayFinder - Search Ad",
  "deleted": false,
  "status": "ENABLED",
  "systemStatus": "RUNNING",
  "systemStatusReasons": [],
  "systemStatusLimitingReasons": [],
  "adAccountId": 123456789,
  "campaignId": 234567890,
  "adGroupId": 345678901,
  "creationTime": "2025-01-10T08:00:00.000",
  "modificationTime": "2025-02-01T12:30:00.000",
  "displayStatus": "RUNNING",
  "creative": {
    "id": 456789012,
    "creativeType": "DEFAULT_PRODUCT_PAGE",
    "systemStatus": "VALID"
  },
  "countryOrRegion": "US",
  "deviceClass": "IPHONE"
}

Topics

Type Aliases

See Also