blob: c1e8caf592c7f0602ec425228e47e93ce2d5bcc7 [file] [log] [blame]
Bu Sun Kim65020912020-05-20 12:08:20 -07001<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="displayvideo_v1.html">Display & Video 360 API</a> . <a href="displayvideo_v1.floodlightGroups.html">floodlightGroups</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78 <code><a href="#get">get(floodlightGroupId, partnerId=None, x__xgafv=None)</a></code></p>
79<p class="firstline">Gets a Floodlight group.</p>
80<p class="toc_element">
Bu Sun Kimd059ad82020-07-22 17:02:09 -070081 <code><a href="#patch">patch(floodlightGroupId, body=None, updateMask=None, partnerId=None, x__xgafv=None)</a></code></p>
82<p class="firstline">Updates an existing Floodlight group. Returns the updated Floodlight group if successful.</p>
Bu Sun Kim65020912020-05-20 12:08:20 -070083<h3>Method Details</h3>
84<div class="method">
85 <code class="details" id="get">get(floodlightGroupId, partnerId=None, x__xgafv=None)</code>
86 <pre>Gets a Floodlight group.
87
88Args:
89 floodlightGroupId: string, Required. The ID of the Floodlight group to fetch. (required)
90 partnerId: string, Required. The partner context by which the Floodlight group is being accessed.
91 x__xgafv: string, V1 error format.
92 Allowed values
93 1 - v1 error format
94 2 - v2 error format
95
96Returns:
97 An object of the form:
98
99 { # A single Floodlight group.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700100 &quot;lookbackWindow&quot;: { # Specifies how many days into the past to look when determining whether to record a conversion. # Required. The lookback window for the Floodlight group. Both click_days and impression_days are required. Acceptable values for both are `0` to `90`, inclusive.
101 &quot;clickDays&quot;: 42, # Lookback window, in days, from the last time a given user clicked on one of your ads.
102 &quot;impressionDays&quot;: 42, # Lookback window, in days, from the last time a given user viewed one of your ads.
103 },
104 &quot;customVariables&quot;: { # User-defined custom variables owned by the Floodlight group. Use custom Floodlight variables to create reporting data that is tailored to your unique business needs. Custom Floodlight variables use the keys `U1=`, `U2=`, and so on, and can take any values that you choose to pass to them. You can use them to track virtually any type of data that you collect about your customers, such as the genre of movie that a customer purchases, the country to which the item is shipped, and so on. Custom Floodlight variables may not be used to pass any data that could be used or recognized as personally identifiable information (PII). Example: `custom_variables { fields { &quot;U1&quot;: value { number_value: 123.4 }, &quot;U2&quot;: value { string_value: &quot;MyVariable2&quot; }, &quot;U3&quot;: value { string_value: &quot;MyVariable3&quot; } } }` Acceptable values for keys are &quot;U1&quot; through &quot;U100&quot;, inclusive. String values must be less than 64 characters long, and cannot contain the following characters: `&quot;&lt;&gt;`.
105 &quot;a_key&quot;: &quot;&quot;, # Properties of the object.
106 },
107 &quot;displayName&quot;: &quot;A String&quot;, # Required. The display name of the Floodlight group.
108 &quot;webTagType&quot;: &quot;A String&quot;, # Required. The web tag type enabled for the Floodlight group.
109 &quot;floodlightGroupId&quot;: &quot;A String&quot;, # Output only. The unique ID of the Floodlight group. Assigned by the system.
110 &quot;name&quot;: &quot;A String&quot;, # Output only. The resource name of the Floodlight group.
111 &quot;activeViewConfig&quot;: { # Configuration for custom Active View video viewability metrics. # The Active View video viewability metric configuration for the Floodlight group.
112 &quot;minimumVolume&quot;: &quot;A String&quot;, # Required. The minimum percentage of the video ad&#x27;s volume required in order for an impression to be recorded.
113 &quot;displayName&quot;: &quot;A String&quot;, # Required. The display name of the custom metric.
114 &quot;minimumDuration&quot;: &quot;A String&quot;, # The minimum visible video duration required (in seconds) in order for an impression to be recorded. You must specify minimum_duration, minimum_quartile or both. If both are specified, an impression meets the metric criteria if either requirement is met (whichever happens first).
115 &quot;minimumQuartile&quot;: &quot;A String&quot;, # The minimum visible video duration required, based on the video quartiles, in order for an impression to be recorded. You must specify minimum_duration, minimum_quartile or both. If both are specified, an impression meets the metric criteria if either requirement is met (whichever happens first).
116 &quot;minimumViewability&quot;: &quot;A String&quot;, # Required. The minimum percentage of the video ad&#x27;s pixels visible on the screen in order for an impression to be recorded.
117 },
118 }</pre>
Bu Sun Kim65020912020-05-20 12:08:20 -0700119</div>
120
121<div class="method">
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700122 <code class="details" id="patch">patch(floodlightGroupId, body=None, updateMask=None, partnerId=None, x__xgafv=None)</code>
123 <pre>Updates an existing Floodlight group. Returns the updated Floodlight group if successful.
Bu Sun Kim65020912020-05-20 12:08:20 -0700124
125Args:
126 floodlightGroupId: string, Output only. The unique ID of the Floodlight group. Assigned by the system. (required)
127 body: object, The request body.
128 The object takes the form of:
129
130{ # A single Floodlight group.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700131 &quot;lookbackWindow&quot;: { # Specifies how many days into the past to look when determining whether to record a conversion. # Required. The lookback window for the Floodlight group. Both click_days and impression_days are required. Acceptable values for both are `0` to `90`, inclusive.
132 &quot;clickDays&quot;: 42, # Lookback window, in days, from the last time a given user clicked on one of your ads.
133 &quot;impressionDays&quot;: 42, # Lookback window, in days, from the last time a given user viewed one of your ads.
134 },
135 &quot;customVariables&quot;: { # User-defined custom variables owned by the Floodlight group. Use custom Floodlight variables to create reporting data that is tailored to your unique business needs. Custom Floodlight variables use the keys `U1=`, `U2=`, and so on, and can take any values that you choose to pass to them. You can use them to track virtually any type of data that you collect about your customers, such as the genre of movie that a customer purchases, the country to which the item is shipped, and so on. Custom Floodlight variables may not be used to pass any data that could be used or recognized as personally identifiable information (PII). Example: `custom_variables { fields { &quot;U1&quot;: value { number_value: 123.4 }, &quot;U2&quot;: value { string_value: &quot;MyVariable2&quot; }, &quot;U3&quot;: value { string_value: &quot;MyVariable3&quot; } } }` Acceptable values for keys are &quot;U1&quot; through &quot;U100&quot;, inclusive. String values must be less than 64 characters long, and cannot contain the following characters: `&quot;&lt;&gt;`.
136 &quot;a_key&quot;: &quot;&quot;, # Properties of the object.
137 },
138 &quot;displayName&quot;: &quot;A String&quot;, # Required. The display name of the Floodlight group.
139 &quot;webTagType&quot;: &quot;A String&quot;, # Required. The web tag type enabled for the Floodlight group.
140 &quot;floodlightGroupId&quot;: &quot;A String&quot;, # Output only. The unique ID of the Floodlight group. Assigned by the system.
141 &quot;name&quot;: &quot;A String&quot;, # Output only. The resource name of the Floodlight group.
142 &quot;activeViewConfig&quot;: { # Configuration for custom Active View video viewability metrics. # The Active View video viewability metric configuration for the Floodlight group.
143 &quot;minimumVolume&quot;: &quot;A String&quot;, # Required. The minimum percentage of the video ad&#x27;s volume required in order for an impression to be recorded.
144 &quot;displayName&quot;: &quot;A String&quot;, # Required. The display name of the custom metric.
145 &quot;minimumDuration&quot;: &quot;A String&quot;, # The minimum visible video duration required (in seconds) in order for an impression to be recorded. You must specify minimum_duration, minimum_quartile or both. If both are specified, an impression meets the metric criteria if either requirement is met (whichever happens first).
146 &quot;minimumQuartile&quot;: &quot;A String&quot;, # The minimum visible video duration required, based on the video quartiles, in order for an impression to be recorded. You must specify minimum_duration, minimum_quartile or both. If both are specified, an impression meets the metric criteria if either requirement is met (whichever happens first).
147 &quot;minimumViewability&quot;: &quot;A String&quot;, # Required. The minimum percentage of the video ad&#x27;s pixels visible on the screen in order for an impression to be recorded.
148 },
149 }
Bu Sun Kim65020912020-05-20 12:08:20 -0700150
Bu Sun Kim65020912020-05-20 12:08:20 -0700151 updateMask: string, Required. The mask to control which fields to update.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700152 partnerId: string, Required. The partner context by which the Floodlight group is being accessed.
Bu Sun Kim65020912020-05-20 12:08:20 -0700153 x__xgafv: string, V1 error format.
154 Allowed values
155 1 - v1 error format
156 2 - v2 error format
157
158Returns:
159 An object of the form:
160
161 { # A single Floodlight group.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700162 &quot;lookbackWindow&quot;: { # Specifies how many days into the past to look when determining whether to record a conversion. # Required. The lookback window for the Floodlight group. Both click_days and impression_days are required. Acceptable values for both are `0` to `90`, inclusive.
163 &quot;clickDays&quot;: 42, # Lookback window, in days, from the last time a given user clicked on one of your ads.
164 &quot;impressionDays&quot;: 42, # Lookback window, in days, from the last time a given user viewed one of your ads.
165 },
166 &quot;customVariables&quot;: { # User-defined custom variables owned by the Floodlight group. Use custom Floodlight variables to create reporting data that is tailored to your unique business needs. Custom Floodlight variables use the keys `U1=`, `U2=`, and so on, and can take any values that you choose to pass to them. You can use them to track virtually any type of data that you collect about your customers, such as the genre of movie that a customer purchases, the country to which the item is shipped, and so on. Custom Floodlight variables may not be used to pass any data that could be used or recognized as personally identifiable information (PII). Example: `custom_variables { fields { &quot;U1&quot;: value { number_value: 123.4 }, &quot;U2&quot;: value { string_value: &quot;MyVariable2&quot; }, &quot;U3&quot;: value { string_value: &quot;MyVariable3&quot; } } }` Acceptable values for keys are &quot;U1&quot; through &quot;U100&quot;, inclusive. String values must be less than 64 characters long, and cannot contain the following characters: `&quot;&lt;&gt;`.
167 &quot;a_key&quot;: &quot;&quot;, # Properties of the object.
168 },
169 &quot;displayName&quot;: &quot;A String&quot;, # Required. The display name of the Floodlight group.
170 &quot;webTagType&quot;: &quot;A String&quot;, # Required. The web tag type enabled for the Floodlight group.
171 &quot;floodlightGroupId&quot;: &quot;A String&quot;, # Output only. The unique ID of the Floodlight group. Assigned by the system.
172 &quot;name&quot;: &quot;A String&quot;, # Output only. The resource name of the Floodlight group.
173 &quot;activeViewConfig&quot;: { # Configuration for custom Active View video viewability metrics. # The Active View video viewability metric configuration for the Floodlight group.
174 &quot;minimumVolume&quot;: &quot;A String&quot;, # Required. The minimum percentage of the video ad&#x27;s volume required in order for an impression to be recorded.
175 &quot;displayName&quot;: &quot;A String&quot;, # Required. The display name of the custom metric.
176 &quot;minimumDuration&quot;: &quot;A String&quot;, # The minimum visible video duration required (in seconds) in order for an impression to be recorded. You must specify minimum_duration, minimum_quartile or both. If both are specified, an impression meets the metric criteria if either requirement is met (whichever happens first).
177 &quot;minimumQuartile&quot;: &quot;A String&quot;, # The minimum visible video duration required, based on the video quartiles, in order for an impression to be recorded. You must specify minimum_duration, minimum_quartile or both. If both are specified, an impression meets the metric criteria if either requirement is met (whichever happens first).
178 &quot;minimumViewability&quot;: &quot;A String&quot;, # Required. The minimum percentage of the video ad&#x27;s pixels visible on the screen in order for an impression to be recorded.
179 },
180 }</pre>
Bu Sun Kim65020912020-05-20 12:08:20 -0700181</div>
182
183</body></html>