• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<html><body>
2<style>
3
4body, h1, h2, h3, div, span, p, pre, a {
5  margin: 0;
6  padding: 0;
7  border: 0;
8  font-weight: inherit;
9  font-style: inherit;
10  font-size: 100%;
11  font-family: inherit;
12  vertical-align: baseline;
13}
14
15body {
16  font-size: 13px;
17  padding: 1em;
18}
19
20h1 {
21  font-size: 26px;
22  margin-bottom: 1em;
23}
24
25h2 {
26  font-size: 24px;
27  margin-bottom: 1em;
28}
29
30h3 {
31  font-size: 20px;
32  margin-bottom: 1em;
33  margin-top: 1em;
34}
35
36pre, code {
37  line-height: 1.5;
38  font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
39}
40
41pre {
42  margin-top: 0.5em;
43}
44
45h1, h2, h3, p {
46  font-family: Arial, sans serif;
47}
48
49h1, h2, h3 {
50  border-bottom: solid #CCC 1px;
51}
52
53.toc_element {
54  margin-top: 0.5em;
55}
56
57.firstline {
58  margin-left: 2 em;
59}
60
61.method  {
62  margin-top: 1em;
63  border: solid 1px #CCC;
64  padding: 1em;
65  background: #EEE;
66}
67
68.details {
69  font-weight: bold;
70  font-size: 14px;
71}
72
73</style>
74
75<h1><a href="dfareporting_v3_4.html">Campaign Manager 360 API</a> . <a href="dfareporting_v3_4.creativeGroups.html">creativeGroups</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78  <code><a href="#close">close()</a></code></p>
79<p class="firstline">Close httplib2 connections.</p>
80<p class="toc_element">
81  <code><a href="#get">get(profileId, id, x__xgafv=None)</a></code></p>
82<p class="firstline">Gets one creative group by ID.</p>
83<p class="toc_element">
84  <code><a href="#insert">insert(profileId, body=None, x__xgafv=None)</a></code></p>
85<p class="firstline">Inserts a new creative group.</p>
86<p class="toc_element">
87  <code><a href="#list">list(profileId, advertiserIds=None, groupNumber=None, ids=None, maxResults=None, pageToken=None, searchString=None, sortField=None, sortOrder=None, x__xgafv=None)</a></code></p>
88<p class="firstline">Retrieves a list of creative groups, possibly filtered. This method supports paging.</p>
89<p class="toc_element">
90  <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
91<p class="firstline">Retrieves the next page of results.</p>
92<p class="toc_element">
93  <code><a href="#patch">patch(profileId, id, body=None, x__xgafv=None)</a></code></p>
94<p class="firstline">Updates an existing creative group. This method supports patch semantics.</p>
95<p class="toc_element">
96  <code><a href="#update">update(profileId, body=None, x__xgafv=None)</a></code></p>
97<p class="firstline">Updates an existing creative group.</p>
98<h3>Method Details</h3>
99<div class="method">
100    <code class="details" id="close">close()</code>
101  <pre>Close httplib2 connections.</pre>
102</div>
103
104<div class="method">
105    <code class="details" id="get">get(profileId, id, x__xgafv=None)</code>
106  <pre>Gets one creative group by ID.
107
108Args:
109  profileId: string, User profile ID associated with this request. (required)
110  id: string, Creative group ID. (required)
111  x__xgafv: string, V1 error format.
112    Allowed values
113      1 - v1 error format
114      2 - v2 error format
115
116Returns:
117  An object of the form:
118
119    { # Contains properties of a creative group.
120  &quot;accountId&quot;: &quot;A String&quot;, # Account ID of this creative group. This is a read-only field that can be left blank.
121  &quot;advertiserId&quot;: &quot;A String&quot;, # Advertiser ID of this creative group. This is a required field on insertion.
122  &quot;advertiserIdDimensionValue&quot;: { # Represents a DimensionValue resource. # Dimension value for the ID of the advertiser. This is a read-only, auto-generated field.
123    &quot;dimensionName&quot;: &quot;A String&quot;, # The name of the dimension.
124    &quot;etag&quot;: &quot;A String&quot;, # The eTag of this response for caching purposes.
125    &quot;id&quot;: &quot;A String&quot;, # The ID associated with the value if available.
126    &quot;kind&quot;: &quot;A String&quot;, # The kind of resource this is, in this case dfareporting#dimensionValue.
127    &quot;matchType&quot;: &quot;A String&quot;, # Determines how the &#x27;value&#x27; field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, &#x27;*&#x27; is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions (&#x27;dfa:paidSearch*&#x27;) allow a matchType other than EXACT.
128    &quot;value&quot;: &quot;A String&quot;, # The value of the dimension.
129  },
130  &quot;groupNumber&quot;: 42, # Subgroup of the creative group. Assign your creative groups to a subgroup in order to filter or manage them more easily. This field is required on insertion and is read-only after insertion. Acceptable values are 1 to 2, inclusive.
131  &quot;id&quot;: &quot;A String&quot;, # ID of this creative group. This is a read-only, auto-generated field.
132  &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dfareporting#creativeGroup&quot;.
133  &quot;name&quot;: &quot;A String&quot;, # Name of this creative group. This is a required field and must be less than 256 characters long and unique among creative groups of the same advertiser.
134  &quot;subaccountId&quot;: &quot;A String&quot;, # Subaccount ID of this creative group. This is a read-only field that can be left blank.
135}</pre>
136</div>
137
138<div class="method">
139    <code class="details" id="insert">insert(profileId, body=None, x__xgafv=None)</code>
140  <pre>Inserts a new creative group.
141
142Args:
143  profileId: string, User profile ID associated with this request. (required)
144  body: object, The request body.
145    The object takes the form of:
146
147{ # Contains properties of a creative group.
148  &quot;accountId&quot;: &quot;A String&quot;, # Account ID of this creative group. This is a read-only field that can be left blank.
149  &quot;advertiserId&quot;: &quot;A String&quot;, # Advertiser ID of this creative group. This is a required field on insertion.
150  &quot;advertiserIdDimensionValue&quot;: { # Represents a DimensionValue resource. # Dimension value for the ID of the advertiser. This is a read-only, auto-generated field.
151    &quot;dimensionName&quot;: &quot;A String&quot;, # The name of the dimension.
152    &quot;etag&quot;: &quot;A String&quot;, # The eTag of this response for caching purposes.
153    &quot;id&quot;: &quot;A String&quot;, # The ID associated with the value if available.
154    &quot;kind&quot;: &quot;A String&quot;, # The kind of resource this is, in this case dfareporting#dimensionValue.
155    &quot;matchType&quot;: &quot;A String&quot;, # Determines how the &#x27;value&#x27; field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, &#x27;*&#x27; is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions (&#x27;dfa:paidSearch*&#x27;) allow a matchType other than EXACT.
156    &quot;value&quot;: &quot;A String&quot;, # The value of the dimension.
157  },
158  &quot;groupNumber&quot;: 42, # Subgroup of the creative group. Assign your creative groups to a subgroup in order to filter or manage them more easily. This field is required on insertion and is read-only after insertion. Acceptable values are 1 to 2, inclusive.
159  &quot;id&quot;: &quot;A String&quot;, # ID of this creative group. This is a read-only, auto-generated field.
160  &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dfareporting#creativeGroup&quot;.
161  &quot;name&quot;: &quot;A String&quot;, # Name of this creative group. This is a required field and must be less than 256 characters long and unique among creative groups of the same advertiser.
162  &quot;subaccountId&quot;: &quot;A String&quot;, # Subaccount ID of this creative group. This is a read-only field that can be left blank.
163}
164
165  x__xgafv: string, V1 error format.
166    Allowed values
167      1 - v1 error format
168      2 - v2 error format
169
170Returns:
171  An object of the form:
172
173    { # Contains properties of a creative group.
174  &quot;accountId&quot;: &quot;A String&quot;, # Account ID of this creative group. This is a read-only field that can be left blank.
175  &quot;advertiserId&quot;: &quot;A String&quot;, # Advertiser ID of this creative group. This is a required field on insertion.
176  &quot;advertiserIdDimensionValue&quot;: { # Represents a DimensionValue resource. # Dimension value for the ID of the advertiser. This is a read-only, auto-generated field.
177    &quot;dimensionName&quot;: &quot;A String&quot;, # The name of the dimension.
178    &quot;etag&quot;: &quot;A String&quot;, # The eTag of this response for caching purposes.
179    &quot;id&quot;: &quot;A String&quot;, # The ID associated with the value if available.
180    &quot;kind&quot;: &quot;A String&quot;, # The kind of resource this is, in this case dfareporting#dimensionValue.
181    &quot;matchType&quot;: &quot;A String&quot;, # Determines how the &#x27;value&#x27; field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, &#x27;*&#x27; is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions (&#x27;dfa:paidSearch*&#x27;) allow a matchType other than EXACT.
182    &quot;value&quot;: &quot;A String&quot;, # The value of the dimension.
183  },
184  &quot;groupNumber&quot;: 42, # Subgroup of the creative group. Assign your creative groups to a subgroup in order to filter or manage them more easily. This field is required on insertion and is read-only after insertion. Acceptable values are 1 to 2, inclusive.
185  &quot;id&quot;: &quot;A String&quot;, # ID of this creative group. This is a read-only, auto-generated field.
186  &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dfareporting#creativeGroup&quot;.
187  &quot;name&quot;: &quot;A String&quot;, # Name of this creative group. This is a required field and must be less than 256 characters long and unique among creative groups of the same advertiser.
188  &quot;subaccountId&quot;: &quot;A String&quot;, # Subaccount ID of this creative group. This is a read-only field that can be left blank.
189}</pre>
190</div>
191
192<div class="method">
193    <code class="details" id="list">list(profileId, advertiserIds=None, groupNumber=None, ids=None, maxResults=None, pageToken=None, searchString=None, sortField=None, sortOrder=None, x__xgafv=None)</code>
194  <pre>Retrieves a list of creative groups, possibly filtered. This method supports paging.
195
196Args:
197  profileId: string, User profile ID associated with this request. (required)
198  advertiserIds: string, Select only creative groups that belong to these advertisers. (repeated)
199  groupNumber: integer, Select only creative groups that belong to this subgroup.
200  ids: string, Select only creative groups with these IDs. (repeated)
201  maxResults: integer, Maximum number of results to return.
202  pageToken: string, Value of the nextPageToken from the previous result page.
203  searchString: string, Allows searching for creative groups by name or ID. Wildcards (*) are allowed. For example, &quot;creativegroup*2015&quot; will return creative groups with names like &quot;creativegroup June 2015&quot;, &quot;creativegroup April 2015&quot;, or simply &quot;creativegroup 2015&quot;. Most of the searches also add wild-cards implicitly at the start and the end of the search string. For example, a search string of &quot;creativegroup&quot; will match creative groups with the name &quot;my creativegroup&quot;, &quot;creativegroup 2015&quot;, or simply &quot;creativegroup&quot;.
204  sortField: string, Field by which to sort the list.
205    Allowed values
206      ID -
207      NAME -
208  sortOrder: string, Order of sorted results.
209    Allowed values
210      ASCENDING -
211      DESCENDING -
212  x__xgafv: string, V1 error format.
213    Allowed values
214      1 - v1 error format
215      2 - v2 error format
216
217Returns:
218  An object of the form:
219
220    { # Creative Group List Response
221  &quot;creativeGroups&quot;: [ # Creative group collection.
222    { # Contains properties of a creative group.
223      &quot;accountId&quot;: &quot;A String&quot;, # Account ID of this creative group. This is a read-only field that can be left blank.
224      &quot;advertiserId&quot;: &quot;A String&quot;, # Advertiser ID of this creative group. This is a required field on insertion.
225      &quot;advertiserIdDimensionValue&quot;: { # Represents a DimensionValue resource. # Dimension value for the ID of the advertiser. This is a read-only, auto-generated field.
226        &quot;dimensionName&quot;: &quot;A String&quot;, # The name of the dimension.
227        &quot;etag&quot;: &quot;A String&quot;, # The eTag of this response for caching purposes.
228        &quot;id&quot;: &quot;A String&quot;, # The ID associated with the value if available.
229        &quot;kind&quot;: &quot;A String&quot;, # The kind of resource this is, in this case dfareporting#dimensionValue.
230        &quot;matchType&quot;: &quot;A String&quot;, # Determines how the &#x27;value&#x27; field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, &#x27;*&#x27; is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions (&#x27;dfa:paidSearch*&#x27;) allow a matchType other than EXACT.
231        &quot;value&quot;: &quot;A String&quot;, # The value of the dimension.
232      },
233      &quot;groupNumber&quot;: 42, # Subgroup of the creative group. Assign your creative groups to a subgroup in order to filter or manage them more easily. This field is required on insertion and is read-only after insertion. Acceptable values are 1 to 2, inclusive.
234      &quot;id&quot;: &quot;A String&quot;, # ID of this creative group. This is a read-only, auto-generated field.
235      &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dfareporting#creativeGroup&quot;.
236      &quot;name&quot;: &quot;A String&quot;, # Name of this creative group. This is a required field and must be less than 256 characters long and unique among creative groups of the same advertiser.
237      &quot;subaccountId&quot;: &quot;A String&quot;, # Subaccount ID of this creative group. This is a read-only field that can be left blank.
238    },
239  ],
240  &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dfareporting#creativeGroupsListResponse&quot;.
241  &quot;nextPageToken&quot;: &quot;A String&quot;, # Pagination token to be used for the next list operation.
242}</pre>
243</div>
244
245<div class="method">
246    <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
247  <pre>Retrieves the next page of results.
248
249Args:
250  previous_request: The request for the previous page. (required)
251  previous_response: The response from the request for the previous page. (required)
252
253Returns:
254  A request object that you can call &#x27;execute()&#x27; on to request the next
255  page. Returns None if there are no more items in the collection.
256    </pre>
257</div>
258
259<div class="method">
260    <code class="details" id="patch">patch(profileId, id, body=None, x__xgafv=None)</code>
261  <pre>Updates an existing creative group. This method supports patch semantics.
262
263Args:
264  profileId: string, User profile ID associated with this request. (required)
265  id: string, CreativeGroup ID. (required)
266  body: object, The request body.
267    The object takes the form of:
268
269{ # Contains properties of a creative group.
270  &quot;accountId&quot;: &quot;A String&quot;, # Account ID of this creative group. This is a read-only field that can be left blank.
271  &quot;advertiserId&quot;: &quot;A String&quot;, # Advertiser ID of this creative group. This is a required field on insertion.
272  &quot;advertiserIdDimensionValue&quot;: { # Represents a DimensionValue resource. # Dimension value for the ID of the advertiser. This is a read-only, auto-generated field.
273    &quot;dimensionName&quot;: &quot;A String&quot;, # The name of the dimension.
274    &quot;etag&quot;: &quot;A String&quot;, # The eTag of this response for caching purposes.
275    &quot;id&quot;: &quot;A String&quot;, # The ID associated with the value if available.
276    &quot;kind&quot;: &quot;A String&quot;, # The kind of resource this is, in this case dfareporting#dimensionValue.
277    &quot;matchType&quot;: &quot;A String&quot;, # Determines how the &#x27;value&#x27; field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, &#x27;*&#x27; is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions (&#x27;dfa:paidSearch*&#x27;) allow a matchType other than EXACT.
278    &quot;value&quot;: &quot;A String&quot;, # The value of the dimension.
279  },
280  &quot;groupNumber&quot;: 42, # Subgroup of the creative group. Assign your creative groups to a subgroup in order to filter or manage them more easily. This field is required on insertion and is read-only after insertion. Acceptable values are 1 to 2, inclusive.
281  &quot;id&quot;: &quot;A String&quot;, # ID of this creative group. This is a read-only, auto-generated field.
282  &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dfareporting#creativeGroup&quot;.
283  &quot;name&quot;: &quot;A String&quot;, # Name of this creative group. This is a required field and must be less than 256 characters long and unique among creative groups of the same advertiser.
284  &quot;subaccountId&quot;: &quot;A String&quot;, # Subaccount ID of this creative group. This is a read-only field that can be left blank.
285}
286
287  x__xgafv: string, V1 error format.
288    Allowed values
289      1 - v1 error format
290      2 - v2 error format
291
292Returns:
293  An object of the form:
294
295    { # Contains properties of a creative group.
296  &quot;accountId&quot;: &quot;A String&quot;, # Account ID of this creative group. This is a read-only field that can be left blank.
297  &quot;advertiserId&quot;: &quot;A String&quot;, # Advertiser ID of this creative group. This is a required field on insertion.
298  &quot;advertiserIdDimensionValue&quot;: { # Represents a DimensionValue resource. # Dimension value for the ID of the advertiser. This is a read-only, auto-generated field.
299    &quot;dimensionName&quot;: &quot;A String&quot;, # The name of the dimension.
300    &quot;etag&quot;: &quot;A String&quot;, # The eTag of this response for caching purposes.
301    &quot;id&quot;: &quot;A String&quot;, # The ID associated with the value if available.
302    &quot;kind&quot;: &quot;A String&quot;, # The kind of resource this is, in this case dfareporting#dimensionValue.
303    &quot;matchType&quot;: &quot;A String&quot;, # Determines how the &#x27;value&#x27; field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, &#x27;*&#x27; is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions (&#x27;dfa:paidSearch*&#x27;) allow a matchType other than EXACT.
304    &quot;value&quot;: &quot;A String&quot;, # The value of the dimension.
305  },
306  &quot;groupNumber&quot;: 42, # Subgroup of the creative group. Assign your creative groups to a subgroup in order to filter or manage them more easily. This field is required on insertion and is read-only after insertion. Acceptable values are 1 to 2, inclusive.
307  &quot;id&quot;: &quot;A String&quot;, # ID of this creative group. This is a read-only, auto-generated field.
308  &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dfareporting#creativeGroup&quot;.
309  &quot;name&quot;: &quot;A String&quot;, # Name of this creative group. This is a required field and must be less than 256 characters long and unique among creative groups of the same advertiser.
310  &quot;subaccountId&quot;: &quot;A String&quot;, # Subaccount ID of this creative group. This is a read-only field that can be left blank.
311}</pre>
312</div>
313
314<div class="method">
315    <code class="details" id="update">update(profileId, body=None, x__xgafv=None)</code>
316  <pre>Updates an existing creative group.
317
318Args:
319  profileId: string, User profile ID associated with this request. (required)
320  body: object, The request body.
321    The object takes the form of:
322
323{ # Contains properties of a creative group.
324  &quot;accountId&quot;: &quot;A String&quot;, # Account ID of this creative group. This is a read-only field that can be left blank.
325  &quot;advertiserId&quot;: &quot;A String&quot;, # Advertiser ID of this creative group. This is a required field on insertion.
326  &quot;advertiserIdDimensionValue&quot;: { # Represents a DimensionValue resource. # Dimension value for the ID of the advertiser. This is a read-only, auto-generated field.
327    &quot;dimensionName&quot;: &quot;A String&quot;, # The name of the dimension.
328    &quot;etag&quot;: &quot;A String&quot;, # The eTag of this response for caching purposes.
329    &quot;id&quot;: &quot;A String&quot;, # The ID associated with the value if available.
330    &quot;kind&quot;: &quot;A String&quot;, # The kind of resource this is, in this case dfareporting#dimensionValue.
331    &quot;matchType&quot;: &quot;A String&quot;, # Determines how the &#x27;value&#x27; field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, &#x27;*&#x27; is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions (&#x27;dfa:paidSearch*&#x27;) allow a matchType other than EXACT.
332    &quot;value&quot;: &quot;A String&quot;, # The value of the dimension.
333  },
334  &quot;groupNumber&quot;: 42, # Subgroup of the creative group. Assign your creative groups to a subgroup in order to filter or manage them more easily. This field is required on insertion and is read-only after insertion. Acceptable values are 1 to 2, inclusive.
335  &quot;id&quot;: &quot;A String&quot;, # ID of this creative group. This is a read-only, auto-generated field.
336  &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dfareporting#creativeGroup&quot;.
337  &quot;name&quot;: &quot;A String&quot;, # Name of this creative group. This is a required field and must be less than 256 characters long and unique among creative groups of the same advertiser.
338  &quot;subaccountId&quot;: &quot;A String&quot;, # Subaccount ID of this creative group. This is a read-only field that can be left blank.
339}
340
341  x__xgafv: string, V1 error format.
342    Allowed values
343      1 - v1 error format
344      2 - v2 error format
345
346Returns:
347  An object of the form:
348
349    { # Contains properties of a creative group.
350  &quot;accountId&quot;: &quot;A String&quot;, # Account ID of this creative group. This is a read-only field that can be left blank.
351  &quot;advertiserId&quot;: &quot;A String&quot;, # Advertiser ID of this creative group. This is a required field on insertion.
352  &quot;advertiserIdDimensionValue&quot;: { # Represents a DimensionValue resource. # Dimension value for the ID of the advertiser. This is a read-only, auto-generated field.
353    &quot;dimensionName&quot;: &quot;A String&quot;, # The name of the dimension.
354    &quot;etag&quot;: &quot;A String&quot;, # The eTag of this response for caching purposes.
355    &quot;id&quot;: &quot;A String&quot;, # The ID associated with the value if available.
356    &quot;kind&quot;: &quot;A String&quot;, # The kind of resource this is, in this case dfareporting#dimensionValue.
357    &quot;matchType&quot;: &quot;A String&quot;, # Determines how the &#x27;value&#x27; field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, &#x27;*&#x27; is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions (&#x27;dfa:paidSearch*&#x27;) allow a matchType other than EXACT.
358    &quot;value&quot;: &quot;A String&quot;, # The value of the dimension.
359  },
360  &quot;groupNumber&quot;: 42, # Subgroup of the creative group. Assign your creative groups to a subgroup in order to filter or manage them more easily. This field is required on insertion and is read-only after insertion. Acceptable values are 1 to 2, inclusive.
361  &quot;id&quot;: &quot;A String&quot;, # ID of this creative group. This is a read-only, auto-generated field.
362  &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dfareporting#creativeGroup&quot;.
363  &quot;name&quot;: &quot;A String&quot;, # Name of this creative group. This is a required field and must be less than 256 characters long and unique among creative groups of the same advertiser.
364  &quot;subaccountId&quot;: &quot;A String&quot;, # Subaccount ID of this creative group. This is a read-only field that can be left blank.
365}</pre>
366</div>
367
368</body></html>