Contents

AppsCampaignReportRow

A single row in an apps campaign report, containing campaign metadata, total metrics, and optional granular time-series metrics.

Declaration

object AppsCampaignReportRow

Properties

NameTypeDescription
totalMetricsAppsCampaignMetrics

See AppsCampaignMetrics for details.

granularMetrics[AppsCampaignMetrics]

Time-series metrics broken down by the requested granularity (for example, DAILY, WEEKLY). Present only when a granularity is specified in the request. When it isn’t, this field is absent and all data appears in totalMetrics instead.

metadataAppsReportingCampaign

See AppsReportingCampaign for details.

Discussion

The metadata field captures campaign identifiers and configuration at report time. The totalMetrics field contains the aggregated performance figures across the full reporting period.

Example

{
  "metadata": {
    "id": 555666777,
    "promotedObjectType": "APPSTORE_APP",
    "promotedObjectId": "987654321",
    "name": "AwayFinder - App Campaign",
    "status": "ENABLED",
    "deleted": false,
    "displayStatus": "RUNNING",
    "modificationTime": "2025-01-10T08:00:00.000",
    "creationTime": "2024-11-01T08:00:00.000",
    "adAccountId": 123456789,
    "systemStatus": "RUNNING",
    "systemStatusReasons": [],
    "billingEvent": "TAPS",
    "systemStatusLimitingReasons": [],
    "dailyBudget": {
      "value": {
        "amount": "100.00",
        "currency": "USD"
      }
    },
    "startTime": "2024-11-01T08:00:00.000",
    "endTime": null,
    "bidStrategy": {
      "bidStrategyType": "MANUAL_CPT",
      "bid": {
        "amount": "1.50",
        "currency": "USD"
      }
    },
    "adChannelType": "SEARCH"
  },
  "totalMetrics": {
    "localSpend": {
      "amount": "482.50",
      "currency": "USD"
    },
    "impressions": 152300,
    "taps": 3210,
    "ttr": 0.021,
    "totalInstalls": 768
  },
  "granularMetrics": [
    {
      "date": "2025-01-10",
      "localSpend": {
        "amount": "241.25",
        "currency": "USD"
      },
      "impressions": 76150,
      "taps": 1605,
      "ttr": 0.021,
      "totalInstalls": 384
    },
    {
      "date": "2025-01-11",
      "localSpend": {
        "amount": "241.25",
        "currency": "USD"
      },
      "impressions": 76150,
      "taps": 1605,
      "ttr": 0.021,
      "totalInstalls": 384
    }
  ]
}

See Also