<!--
{
  "availability" : [
    "Apple Ads Platform API: 1.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "Apple-Ads-Platform-API",
  "identifier" : "/documentation/Apple-Ads-Platform-API/AppsCampaignReportResponse",
  "metadataVersion" : "0.1.0",
  "role" : "Object",
  "symbol" : {
    "kind" : "Object",
    "modules" : [
      "Apple Ads Platform API"
    ],
    "preciseIdentifier" : "data:apple-ads-platform-api:AppsCampaignReportResponse"
  },
  "title" : "AppsCampaignReportResponse"
}
-->

# AppsCampaignReportResponse

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

```
object AppsCampaignReportResponse
```

## Discussion

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

### Example

```json
{
  "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
  }
}
```

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)