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

# ChangeDetailsResponse

The response envelope returned by the Get Change History Detail endpoint, wrapping an array of change detail records with pagination metadata.

```
object ChangeDetailsResponse
```

## Discussion

The `ChangeDetailsResponse` object is the response envelope returned by the change history detail endpoints. Use `pagination` to navigate large transaction responses.

### Example

```json
{
  "dataType": "ChangeDetail",
  "result": [
    {
      "transactionId": "txn_abc123def456",
      "detailId": "Campaign.444555666.txn_abc123def456",
      "eventType": "UPDATE",
      "entityType": "Campaign",
      "entityId": "444555666",
      "eventTime": "2025-03-15T14:30:00.000Z",
      "userType": "CUSTOMER_API",
      "modifiedBy": "555666777",
      "entityMetaData": {
        "name": "AwayFinder - Summer App Promo"
      },
      "details": [
        {
          "transactionId": "txn_abc123def456",
          "changes": [
            {
              "field": "status",
              "oldValues": [
                "PAUSED"
              ],
              "newValues": [
                "ENABLED"
              ]
            },
            {
              "field": "dailyBudget",
              "oldValues": [
                "50.00"
              ],
              "newValues": [
                "100.00"
              ]
            }
          ]
        }
      ]
    }
  ],
  "pagination": {
    "offset": 0,
    "pageSize": 50,
    "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)