Contents

AdGroupResponse

The response object for an ad group operation.

Declaration

object AdGroupResponse

Properties

NameTypeDescription
resultAdGroup

The affected AdGroup object in its post-operation state. Present on success. See AdGroup.

errorError

Structured details about what went wrong, of type Error. Present on failure, in place of result, for operational errors specific to the ad group request. HTTP-level errors (400, 401, 403, etc.) return a separate ErrorResponse body as the top-level response instead. See Error.

Discussion

The AdGroupResponse object is the single-item response envelope returned by create, update, and delete ad group operations.

Example

{
  "result": {
    "id": 555666777,
    "name": "AwayFinder iOS — New Users 18-34",
    "adAccountId": 123456789,
    "campaignId": 444555666,
    "pricingModel": "CPT",
    "status": "ENABLED",
    "systemStatus": "RUNNING",
    "displayStatus": "RUNNING",
    "startTime": "2025-09-01T00:00:00.000",
    "endTime": "2025-12-31T23:59:59.000",
    "automatedKeywordsOptIn": false,
    "targeting": {
      "deviceClass": {
        "include": [
          "IPHONE"
        ]
      },
      "minAge": {
        "include": [
          "18"
        ]
      },
      "maxAge": {
        "include": [
          "34"
        ]
      }
    },
    "deleted": false,
    "creationTime": "2025-01-10T08:00:00.000",
    "modificationTime": "2025-06-01T10:00:00.000"
  }
}

See Also