AdUpdate
The request body for updating an existing Ad object.
Declaration
object AdUpdateProperties
| Name | Type | Description |
|---|---|---|
name | string | Must be at least 1 character long if provided. Mutable. |
status | AdUpdate.Status | See AdStatus. Mutable. |
Discussion
To modify an existing ad, use AdUpdate with PUT /v1/ads/{id} (Update an Ad). You can change only name and status after creation. The system locks in the ad’s creative, ad group, campaign, and ad account at creation. Omit any field you don’t want to update.
Setting status to PAUSED immediately stops the ad from entering auctions. Switching it back to ENABLED resumes participation.
Example
{
"name": "AwayFinder Summer Sale Ad",
"status": "PAUSED"
}