Contents

AdResponse

The response object for an Ad operation.

Declaration

object AdResponse

Properties

NameTypeDescription
resultAd

The full Ad object, populated on success. Absent on failure. See Ad. Read-only.

errorError

Describes the problem when the operation fails. Absent on success. See Error. Read-only.

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