Contents

CreativeResponse

The response object for an ad creative operation.

Declaration

object CreativeResponse

Properties

NameTypeDescription
resultCreative

The full Creative object, populated on success and null on failure. See Creative. Read-only.

errorError

Error details, populated on failure. See Error. Read-only.

Discussion

The CreativeResponse object is the single-item response envelope returned by ad creative create, read, and update operations.

Example

{
  "result": {
    "id": 666777888,
    "adAccountId": 123456789,
    "name": "AwayFinder - Summer Campaign Creative",
    "creativeType": "CUSTOM_PRODUCT_PAGE",
    "creativeSpec": {},
    "destination": {
      "destinationType": "APP_STORE_PRODUCT_PAGE",
      "parameters": {
        "adamId": "987654321",
        "productPageId": "76659d7a-d146-43d3-b6b8-b7a12f74bf6b"
      },
      "url": "https://apps.apple.com/us/app/id/987654321"
    },
    "systemStatus": "VALID",
    "systemStatusReasons": [],
    "creationTime": "2025-06-01T10:00:00.000",
    "modificationTime": "2025-06-01T10:00:00.000",
    "eligibility": {
      "status": "ELIGIBLE",
      "allowedGroups": [
        {
          "supplyPlacement": ["APPSTORE_SEARCH_RESULTS"],
          "countryOrRegion": ["US"]
        }
      ],
      "blockedGroups": []
    }
  }
}

See Also