<!--
{
  "availability" : [
    "Apple Ads Platform API: 1.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "Apple-Ads-Platform-API",
  "identifier" : "/documentation/Apple-Ads-Platform-API/CampaignUpdate",
  "metadataVersion" : "0.1.0",
  "role" : "Object",
  "symbol" : {
    "kind" : "Object",
    "modules" : [
      "Apple Ads Platform API"
    ],
    "preciseIdentifier" : "data:apple-ads-platform-api:CampaignUpdate"
  },
  "title" : "CampaignUpdate"
}
-->

# CampaignUpdate

The request body for updating an existing Campaign object.

```
object CampaignUpdate
```

## Discussion

The `CampaignUpdate` object is the request payload for modifying an existing campaign. Only the fields listed here can be changed after creation. Immutable fields such as `billingEvent`, `promotedObjectType`, and `promotedObjectId` aren’t present. Include only the fields you want to modify.

Both `dailyBudget` and `sharedBudgets` can be present on a campaign and function independently: `dailyBudget` caps daily spending. Each shared budget enforces a flight-period cap defined by its `startTime` and `endTime`.

To pause (`PAUSED`) or resume (`ENABLED`) delivery without deleting the campaign, use `status`.

### Example

```json
{
  "name": "AwayFinder Apple Maps Campaign",
  "startTime": "2025-09-01T00:00:00.000",
  "endTime": "2025-12-31T23:59:59.000",
  "status": "ENABLED",
  "dailyBudget": {
    "value": {
      "amount": "1200.00",
      "currency": "USD"
    }
  },
  "sharedBudgets": [
    {
      "budgetId": 555666777
    }
  ],
  "targeting": {
    "supplySource": {
      "include": [
        "MAPS"
      ]
    },
    "supplyPlacement": {
      "include": [
        "MAPS_SEARCH_RESULTS"
      ]
    },
    "countryOrRegion": {
      "include": [
        "US"
      ]
    }
  },
  "bidStrategy": {
    "bidStrategyType": "MANUAL_CPT",
    "bidStrategyGoal": "TAP",
    "bid": {
      "amount": "2.50",
      "currency": "USD"
    }
  },
  "invoiceDetail": {
    "name": "AwayFinder Q3 Invoice",
    "orderNumber": "PO-555666777",
    "clientName": "AwayFinder",
    "primaryBuyerName": "Jordan Lee",
    "primaryBuyerEmail": "jordan.lee@awayfinder.com",
    "billingEmail": "billing@awayfinder.com"
  },
  "regulationResponses": [
    {
      "regulationType": "CAMPAIGN_SAPIN_LAW",
      "responseValue": "NOT_ANSWERED"
    }
  ]
}
```

## Topics

### Dictionaries

[`object CampaignUpdate.BidStrategy`](/documentation/Apple-Ads-Platform-API/CampaignUpdate/BidStrategy-data.dictionary)

The request body for updating a bid strategy on an ad group or campaign.

[`object CampaignUpdate.DailyBudget`](/documentation/Apple-Ads-Platform-API/CampaignUpdate/DailyBudget-data.dictionary)

Request wrapper for updating a campaign’s daily budget amount.

[`object CampaignUpdate.InvoiceDetail`](/documentation/Apple-Ads-Platform-API/CampaignUpdate/InvoiceDetail-data.dictionary)

The request body for updating the invoice details of a budget order.

[`object CampaignUpdate.Targeting`](/documentation/Apple-Ads-Platform-API/CampaignUpdate/Targeting-data.dictionary)

Targeting configuration for updating an existing campaign’s supply source, placement, and geographic markets.

### Type Aliases

[`string CampaignUpdate.Status`](/documentation/Apple-Ads-Platform-API/CampaignUpdate/Status-data.typealias)

Advertiser-configurable run state for a campaign.

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)