Contents

AppsCampaignReportResponse

The top-level response envelope for apps campaign-level reports.

Declaration

object AppsCampaignReportResponse

Properties

NameTypeDescription
resultAppsCampaignResultContainer

Wraps the array of report rows, each including campaign metadata, totalMetrics, and granularMetrics. If no rows match the request, result is returned as an empty object. See AppsCampaignResultContainer for details.

paginationResponsePagination

See ResponsePagination for details.

errorError

Populated with an ErrorResponse describing the failure when the request fails. See ErrorResponse for details.

Discussion

Each row nests campaign metadata alongside totalMetrics for the full date range and, when requested, granularMetrics broken down by day.

Example

{
  "result": {
    "rows": [
      {
        "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
          }
        ]
      }
    ],
    "summary": {
      "grandTotal": {
        "localSpend": {
          "amount": "482.50",
          "currency": "USD"
        },
        "impressions": 152300,
        "taps": 3210,
        "ttr": 0.021,
        "totalInstalls": 768
      }
    }
  },
  "pagination": {
    "pageSize": 20,
    "offset": 0,
    "totalCount": 1
  }
}

See Also