---
title: ChangeDetailsResponse
framework: Apple Ads Platform API
role: symbol
role_heading: Object
platforms: [apple ads platform api 1.0+]
path: apple-ads-platform-api/changedetailsresponse
---

# ChangeDetailsResponse

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

## Declaration

```data
object ChangeDetailsResponse
```

## Properties

result: An array of ChangeDetails records. Each record contains the full field-level change history for one API entity within the transaction. Read-only. pagination: Pagination state for the response. See Pagination. Contains offset, pageSize, and totalCount. Read-only. error: Present when the request failed. See ErrorMessage. Contains error details. Read-only.

## Discussion

Discussion The ChangeDetailsResponse object is the response envelope returned by the change history detail endpoints. Use pagination to navigate large transaction responses. Example {   "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   } }

## See Also

- [ActivityDetail](apple-ads-platform-api/activitydetail.md)
- [AuditSummary](apple-ads-platform-api/auditsummary.md)
- [AuditSummaryResponse](apple-ads-platform-api/auditsummaryresponse.md)
- [BaseAuditResponse](apple-ads-platform-api/baseauditresponse.md)
- [ChangeDetails](apple-ads-platform-api/changedetails.md)
- [ErrorMessage](apple-ads-platform-api/errormessage.md)
