Update campaign settings (step 1)
curl --request PATCH \
--url http://localhost:8000/api/v1/campaigns/drafts/{draft_id}/campaign-settings \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"campaign_name": "<string>",
"website_url": "<string>",
"daily_budget_micros": 123,
"bidding_strategy": {
"target_cpa_micros": 123,
"target_roas": 1,
"max_cpc_bid_ceiling_micros": 123
},
"language_ids": [
123
],
"location_targets": [
{
"geo_target_constant_id": 123,
"target_type": "INCLUDE"
}
],
"network_settings": {
"target_google_search": true,
"target_search_network": false,
"target_content_network": false
},
"ad_schedule": {
"schedule_entries": [
{
"start_hour": 11,
"end_hour": 12,
"start_minute": 0,
"end_minute": 0
}
]
},
"start_date": "2023-12-25",
"end_date": "2023-12-25",
"conversion_goals": [
{
"conversion_action_id": 1
}
]
}
'import requests
url = "http://localhost:8000/api/v1/campaigns/drafts/{draft_id}/campaign-settings"
payload = {
"name": "<string>",
"campaign_name": "<string>",
"website_url": "<string>",
"daily_budget_micros": 123,
"bidding_strategy": {
"target_cpa_micros": 123,
"target_roas": 1,
"max_cpc_bid_ceiling_micros": 123
},
"language_ids": [123],
"location_targets": [
{
"geo_target_constant_id": 123,
"target_type": "INCLUDE"
}
],
"network_settings": {
"target_google_search": True,
"target_search_network": False,
"target_content_network": False
},
"ad_schedule": { "schedule_entries": [
{
"start_hour": 11,
"end_hour": 12,
"start_minute": 0,
"end_minute": 0
}
] },
"start_date": "2023-12-25",
"end_date": "2023-12-25",
"conversion_goals": [{ "conversion_action_id": 1 }]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: '<string>',
campaign_name: '<string>',
website_url: '<string>',
daily_budget_micros: 123,
bidding_strategy: {target_cpa_micros: 123, target_roas: 1, max_cpc_bid_ceiling_micros: 123},
language_ids: [123],
location_targets: [{geo_target_constant_id: 123, target_type: 'INCLUDE'}],
network_settings: {
target_google_search: true,
target_search_network: false,
target_content_network: false
},
ad_schedule: {
schedule_entries: [{start_hour: 11, end_hour: 12, start_minute: 0, end_minute: 0}]
},
start_date: '2023-12-25',
end_date: '2023-12-25',
conversion_goals: [{conversion_action_id: 1}]
})
};
fetch('http://localhost:8000/api/v1/campaigns/drafts/{draft_id}/campaign-settings', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "8000",
CURLOPT_URL => "http://localhost:8000/api/v1/campaigns/drafts/{draft_id}/campaign-settings",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'name' => '<string>',
'campaign_name' => '<string>',
'website_url' => '<string>',
'daily_budget_micros' => 123,
'bidding_strategy' => [
'target_cpa_micros' => 123,
'target_roas' => 1,
'max_cpc_bid_ceiling_micros' => 123
],
'language_ids' => [
123
],
'location_targets' => [
[
'geo_target_constant_id' => 123,
'target_type' => 'INCLUDE'
]
],
'network_settings' => [
'target_google_search' => true,
'target_search_network' => false,
'target_content_network' => false
],
'ad_schedule' => [
'schedule_entries' => [
[
'start_hour' => 11,
'end_hour' => 12,
'start_minute' => 0,
'end_minute' => 0
]
]
],
'start_date' => '2023-12-25',
'end_date' => '2023-12-25',
'conversion_goals' => [
[
'conversion_action_id' => 1
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "http://localhost:8000/api/v1/campaigns/drafts/{draft_id}/campaign-settings"
payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"campaign_name\": \"<string>\",\n \"website_url\": \"<string>\",\n \"daily_budget_micros\": 123,\n \"bidding_strategy\": {\n \"target_cpa_micros\": 123,\n \"target_roas\": 1,\n \"max_cpc_bid_ceiling_micros\": 123\n },\n \"language_ids\": [\n 123\n ],\n \"location_targets\": [\n {\n \"geo_target_constant_id\": 123,\n \"target_type\": \"INCLUDE\"\n }\n ],\n \"network_settings\": {\n \"target_google_search\": true,\n \"target_search_network\": false,\n \"target_content_network\": false\n },\n \"ad_schedule\": {\n \"schedule_entries\": [\n {\n \"start_hour\": 11,\n \"end_hour\": 12,\n \"start_minute\": 0,\n \"end_minute\": 0\n }\n ]\n },\n \"start_date\": \"2023-12-25\",\n \"end_date\": \"2023-12-25\",\n \"conversion_goals\": [\n {\n \"conversion_action_id\": 1\n }\n ]\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("http://localhost:8000/api/v1/campaigns/drafts/{draft_id}/campaign-settings")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"campaign_name\": \"<string>\",\n \"website_url\": \"<string>\",\n \"daily_budget_micros\": 123,\n \"bidding_strategy\": {\n \"target_cpa_micros\": 123,\n \"target_roas\": 1,\n \"max_cpc_bid_ceiling_micros\": 123\n },\n \"language_ids\": [\n 123\n ],\n \"location_targets\": [\n {\n \"geo_target_constant_id\": 123,\n \"target_type\": \"INCLUDE\"\n }\n ],\n \"network_settings\": {\n \"target_google_search\": true,\n \"target_search_network\": false,\n \"target_content_network\": false\n },\n \"ad_schedule\": {\n \"schedule_entries\": [\n {\n \"start_hour\": 11,\n \"end_hour\": 12,\n \"start_minute\": 0,\n \"end_minute\": 0\n }\n ]\n },\n \"start_date\": \"2023-12-25\",\n \"end_date\": \"2023-12-25\",\n \"conversion_goals\": [\n {\n \"conversion_action_id\": 1\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost:8000/api/v1/campaigns/drafts/{draft_id}/campaign-settings")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Patch.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"<string>\",\n \"campaign_name\": \"<string>\",\n \"website_url\": \"<string>\",\n \"daily_budget_micros\": 123,\n \"bidding_strategy\": {\n \"target_cpa_micros\": 123,\n \"target_roas\": 1,\n \"max_cpc_bid_ceiling_micros\": 123\n },\n \"language_ids\": [\n 123\n ],\n \"location_targets\": [\n {\n \"geo_target_constant_id\": 123,\n \"target_type\": \"INCLUDE\"\n }\n ],\n \"network_settings\": {\n \"target_google_search\": true,\n \"target_search_network\": false,\n \"target_content_network\": false\n },\n \"ad_schedule\": {\n \"schedule_entries\": [\n {\n \"start_hour\": 11,\n \"end_hour\": 12,\n \"start_minute\": 0,\n \"end_minute\": 0\n }\n ]\n },\n \"start_date\": \"2023-12-25\",\n \"end_date\": \"2023-12-25\",\n \"conversion_goals\": [\n {\n \"conversion_action_id\": 1\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"draft": {
"id": 123,
"name": "<string>",
"google_ads_customer_id": 123,
"date_added": "2023-11-07T05:31:56Z",
"date_updated": "2023-11-07T05:31:56Z",
"market_analysis_id": 123,
"campaign_name": "<string>",
"website_url": "<string>",
"daily_budget_micros": 123,
"bidding_strategy": {
"target_cpa_micros": 123,
"target_roas": 1,
"max_cpc_bid_ceiling_micros": 123
},
"default_match_type": "PHRASE",
"language_ids": [
123
],
"location_targets": [
{
"geo_target_constant_id": 123,
"target_type": "INCLUDE"
}
],
"network_settings": {
"target_google_search": true,
"target_search_network": false,
"target_content_network": false
},
"ad_schedule": {
"schedule_entries": [
{
"start_hour": 11,
"end_hour": 12,
"start_minute": 0,
"end_minute": 0
}
]
},
"start_date": "2023-12-25",
"end_date": "2023-12-25",
"conversion_goals": [
{
"conversion_action_id": 1
}
],
"extensions": {
"sitelinks": [
{
"link_text": "<string>",
"final_url": "<string>",
"description_1": "<string>",
"description_2": "<string>",
"final_mobile_url": "<string>"
}
],
"callouts": [
{
"callout_text": "<string>"
}
],
"phone": {
"phone_number": "<string>",
"country_code": "<string>"
},
"structured_snippets": [
{
"values": [
"<string>"
]
}
]
},
"ad_groups_task_id": "<string>",
"ad_groups_generation_status": "completed",
"ad_groups_generation_error": "<string>",
"extensions_task_id": "<string>",
"extensions_generation_status": "not_started",
"extensions_generation_error": "<string>",
"is_published": false,
"published_at": "2023-11-07T05:31:56Z",
"published_campaign_id": 123,
"all_rsas_generated": false,
"ad_groups": [
{
"id": 123,
"name": "<string>",
"cpc_bid_micros": 25000000000,
"keywords": [
{
"id": 123,
"text": "<string>",
"cpc_bid_micros": 25000000000,
"final_url": "<string>",
"source_market_analysis_keyword_id": 123
}
],
"rsas": [
{
"id": 123,
"ad_group_id": 123,
"headlines": [
{
"text": "<string>",
"reason": "<string>"
}
],
"descriptions": [
{
"text": "<string>",
"reason": "<string>"
}
],
"final_url": "<string>",
"final_mobile_url": "<string>",
"display_path_1": "<string>",
"display_path_2": "<string>",
"tracking_url_template": "<string>",
"generation_status": "pending",
"generation_task_id": "<string>",
"generation_error": "<string>"
}
]
}
]
},
"warnings": [
{
"field": "<string>",
"code": "<string>",
"message": "<string>"
}
]
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Campaigns
Update campaign settings (step 1)
Partial update of campaign-level settings on a draft.
Only provided fields are updated. Returns the full refreshed draft plus any validation warnings for this step.
PATCH
/
api
/
v1
/
campaigns
/
drafts
/
{draft_id}
/
campaign-settings
Update campaign settings (step 1)
curl --request PATCH \
--url http://localhost:8000/api/v1/campaigns/drafts/{draft_id}/campaign-settings \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"campaign_name": "<string>",
"website_url": "<string>",
"daily_budget_micros": 123,
"bidding_strategy": {
"target_cpa_micros": 123,
"target_roas": 1,
"max_cpc_bid_ceiling_micros": 123
},
"language_ids": [
123
],
"location_targets": [
{
"geo_target_constant_id": 123,
"target_type": "INCLUDE"
}
],
"network_settings": {
"target_google_search": true,
"target_search_network": false,
"target_content_network": false
},
"ad_schedule": {
"schedule_entries": [
{
"start_hour": 11,
"end_hour": 12,
"start_minute": 0,
"end_minute": 0
}
]
},
"start_date": "2023-12-25",
"end_date": "2023-12-25",
"conversion_goals": [
{
"conversion_action_id": 1
}
]
}
'import requests
url = "http://localhost:8000/api/v1/campaigns/drafts/{draft_id}/campaign-settings"
payload = {
"name": "<string>",
"campaign_name": "<string>",
"website_url": "<string>",
"daily_budget_micros": 123,
"bidding_strategy": {
"target_cpa_micros": 123,
"target_roas": 1,
"max_cpc_bid_ceiling_micros": 123
},
"language_ids": [123],
"location_targets": [
{
"geo_target_constant_id": 123,
"target_type": "INCLUDE"
}
],
"network_settings": {
"target_google_search": True,
"target_search_network": False,
"target_content_network": False
},
"ad_schedule": { "schedule_entries": [
{
"start_hour": 11,
"end_hour": 12,
"start_minute": 0,
"end_minute": 0
}
] },
"start_date": "2023-12-25",
"end_date": "2023-12-25",
"conversion_goals": [{ "conversion_action_id": 1 }]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: '<string>',
campaign_name: '<string>',
website_url: '<string>',
daily_budget_micros: 123,
bidding_strategy: {target_cpa_micros: 123, target_roas: 1, max_cpc_bid_ceiling_micros: 123},
language_ids: [123],
location_targets: [{geo_target_constant_id: 123, target_type: 'INCLUDE'}],
network_settings: {
target_google_search: true,
target_search_network: false,
target_content_network: false
},
ad_schedule: {
schedule_entries: [{start_hour: 11, end_hour: 12, start_minute: 0, end_minute: 0}]
},
start_date: '2023-12-25',
end_date: '2023-12-25',
conversion_goals: [{conversion_action_id: 1}]
})
};
fetch('http://localhost:8000/api/v1/campaigns/drafts/{draft_id}/campaign-settings', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "8000",
CURLOPT_URL => "http://localhost:8000/api/v1/campaigns/drafts/{draft_id}/campaign-settings",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'name' => '<string>',
'campaign_name' => '<string>',
'website_url' => '<string>',
'daily_budget_micros' => 123,
'bidding_strategy' => [
'target_cpa_micros' => 123,
'target_roas' => 1,
'max_cpc_bid_ceiling_micros' => 123
],
'language_ids' => [
123
],
'location_targets' => [
[
'geo_target_constant_id' => 123,
'target_type' => 'INCLUDE'
]
],
'network_settings' => [
'target_google_search' => true,
'target_search_network' => false,
'target_content_network' => false
],
'ad_schedule' => [
'schedule_entries' => [
[
'start_hour' => 11,
'end_hour' => 12,
'start_minute' => 0,
'end_minute' => 0
]
]
],
'start_date' => '2023-12-25',
'end_date' => '2023-12-25',
'conversion_goals' => [
[
'conversion_action_id' => 1
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "http://localhost:8000/api/v1/campaigns/drafts/{draft_id}/campaign-settings"
payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"campaign_name\": \"<string>\",\n \"website_url\": \"<string>\",\n \"daily_budget_micros\": 123,\n \"bidding_strategy\": {\n \"target_cpa_micros\": 123,\n \"target_roas\": 1,\n \"max_cpc_bid_ceiling_micros\": 123\n },\n \"language_ids\": [\n 123\n ],\n \"location_targets\": [\n {\n \"geo_target_constant_id\": 123,\n \"target_type\": \"INCLUDE\"\n }\n ],\n \"network_settings\": {\n \"target_google_search\": true,\n \"target_search_network\": false,\n \"target_content_network\": false\n },\n \"ad_schedule\": {\n \"schedule_entries\": [\n {\n \"start_hour\": 11,\n \"end_hour\": 12,\n \"start_minute\": 0,\n \"end_minute\": 0\n }\n ]\n },\n \"start_date\": \"2023-12-25\",\n \"end_date\": \"2023-12-25\",\n \"conversion_goals\": [\n {\n \"conversion_action_id\": 1\n }\n ]\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("http://localhost:8000/api/v1/campaigns/drafts/{draft_id}/campaign-settings")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"campaign_name\": \"<string>\",\n \"website_url\": \"<string>\",\n \"daily_budget_micros\": 123,\n \"bidding_strategy\": {\n \"target_cpa_micros\": 123,\n \"target_roas\": 1,\n \"max_cpc_bid_ceiling_micros\": 123\n },\n \"language_ids\": [\n 123\n ],\n \"location_targets\": [\n {\n \"geo_target_constant_id\": 123,\n \"target_type\": \"INCLUDE\"\n }\n ],\n \"network_settings\": {\n \"target_google_search\": true,\n \"target_search_network\": false,\n \"target_content_network\": false\n },\n \"ad_schedule\": {\n \"schedule_entries\": [\n {\n \"start_hour\": 11,\n \"end_hour\": 12,\n \"start_minute\": 0,\n \"end_minute\": 0\n }\n ]\n },\n \"start_date\": \"2023-12-25\",\n \"end_date\": \"2023-12-25\",\n \"conversion_goals\": [\n {\n \"conversion_action_id\": 1\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost:8000/api/v1/campaigns/drafts/{draft_id}/campaign-settings")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Patch.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"<string>\",\n \"campaign_name\": \"<string>\",\n \"website_url\": \"<string>\",\n \"daily_budget_micros\": 123,\n \"bidding_strategy\": {\n \"target_cpa_micros\": 123,\n \"target_roas\": 1,\n \"max_cpc_bid_ceiling_micros\": 123\n },\n \"language_ids\": [\n 123\n ],\n \"location_targets\": [\n {\n \"geo_target_constant_id\": 123,\n \"target_type\": \"INCLUDE\"\n }\n ],\n \"network_settings\": {\n \"target_google_search\": true,\n \"target_search_network\": false,\n \"target_content_network\": false\n },\n \"ad_schedule\": {\n \"schedule_entries\": [\n {\n \"start_hour\": 11,\n \"end_hour\": 12,\n \"start_minute\": 0,\n \"end_minute\": 0\n }\n ]\n },\n \"start_date\": \"2023-12-25\",\n \"end_date\": \"2023-12-25\",\n \"conversion_goals\": [\n {\n \"conversion_action_id\": 1\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"draft": {
"id": 123,
"name": "<string>",
"google_ads_customer_id": 123,
"date_added": "2023-11-07T05:31:56Z",
"date_updated": "2023-11-07T05:31:56Z",
"market_analysis_id": 123,
"campaign_name": "<string>",
"website_url": "<string>",
"daily_budget_micros": 123,
"bidding_strategy": {
"target_cpa_micros": 123,
"target_roas": 1,
"max_cpc_bid_ceiling_micros": 123
},
"default_match_type": "PHRASE",
"language_ids": [
123
],
"location_targets": [
{
"geo_target_constant_id": 123,
"target_type": "INCLUDE"
}
],
"network_settings": {
"target_google_search": true,
"target_search_network": false,
"target_content_network": false
},
"ad_schedule": {
"schedule_entries": [
{
"start_hour": 11,
"end_hour": 12,
"start_minute": 0,
"end_minute": 0
}
]
},
"start_date": "2023-12-25",
"end_date": "2023-12-25",
"conversion_goals": [
{
"conversion_action_id": 1
}
],
"extensions": {
"sitelinks": [
{
"link_text": "<string>",
"final_url": "<string>",
"description_1": "<string>",
"description_2": "<string>",
"final_mobile_url": "<string>"
}
],
"callouts": [
{
"callout_text": "<string>"
}
],
"phone": {
"phone_number": "<string>",
"country_code": "<string>"
},
"structured_snippets": [
{
"values": [
"<string>"
]
}
]
},
"ad_groups_task_id": "<string>",
"ad_groups_generation_status": "completed",
"ad_groups_generation_error": "<string>",
"extensions_task_id": "<string>",
"extensions_generation_status": "not_started",
"extensions_generation_error": "<string>",
"is_published": false,
"published_at": "2023-11-07T05:31:56Z",
"published_campaign_id": 123,
"all_rsas_generated": false,
"ad_groups": [
{
"id": 123,
"name": "<string>",
"cpc_bid_micros": 25000000000,
"keywords": [
{
"id": 123,
"text": "<string>",
"cpc_bid_micros": 25000000000,
"final_url": "<string>",
"source_market_analysis_keyword_id": 123
}
],
"rsas": [
{
"id": 123,
"ad_group_id": 123,
"headlines": [
{
"text": "<string>",
"reason": "<string>"
}
],
"descriptions": [
{
"text": "<string>",
"reason": "<string>"
}
],
"final_url": "<string>",
"final_mobile_url": "<string>",
"display_path_1": "<string>",
"display_path_2": "<string>",
"tracking_url_template": "<string>",
"generation_status": "pending",
"generation_task_id": "<string>",
"generation_error": "<string>"
}
]
}
]
},
"warnings": [
{
"field": "<string>",
"code": "<string>",
"message": "<string>"
}
]
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
Path Parameters
Query Parameters
When default_match_type changes: True = update ALL keywords, False (default) = only update keywords that had the previous match type
Body
application/json
Request schema for PATCH /drafts/{id}/campaign-settings.
All fields optional — only provided fields are updated.
Required string length:
1 - 256Required string length:
1 - 256Required string length:
1 - 2083Bidding strategy configuration.
Show child attributes
Show child attributes
The keyword match types.
Available options:
EXACT, PHRASE, BROAD, BROAD_MODIFIER, NEGATIVE Show child attributes
Show child attributes
Network settings for campaign.
Show child attributes
Show child attributes
Ad schedule configuration.
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Response
Successful Response
⌘I