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

# AdResponse

The response object for an Ad operation.

## Declaration

```data
object AdResponse
```

## Properties

result: The full Ad object, populated on success. Absent on failure. See Ad. Read-only. error: Describes the problem when the operation fails. Absent on success. See Error. Read-only.

## Discussion

Discussion Ad create, read, update, and delete operations return AdResponse, the single-item response envelope. Example {   "result": {     "id": 777888999,     "adAccountId": 123456789,     "campaignId": 444555666,     "adGroupId": 555666777,     "creativeId": 666777888,     "name": "AwayFinder - Default Product Page",     "status": "ENABLED",     "systemStatus": "RUNNING",     "systemStatusReasons": [],     "systemStatusLimitingReasons": [],     "displayStatus": "RUNNING",     "deleted": false,     "creationTime": "2025-09-01T08:00:00.000",     "modificationTime": "2025-09-01T08:00:00.000"   } }

## See Also

- [Ad](apple-ads-platform-api/ad.md)
- [AdCreate](apple-ads-platform-api/adcreate.md)
- [AdUpdate](apple-ads-platform-api/adupdate.md)
- [AdQueryResponse](apple-ads-platform-api/adqueryresponse.md)
