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="content_v2_1.html">Content API for Shopping</a> . <a href="content_v2_1.liasettings.html">liasettings</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="#custombatch">custombatch(body=None, x__xgafv=None)</a></code></p>
82<p class="firstline">Retrieves and/or updates the LIA settings of multiple accounts in a single request.</p>
83<p class="toc_element">
84  <code><a href="#get">get(merchantId, accountId, x__xgafv=None)</a></code></p>
85<p class="firstline">Retrieves the LIA settings of the account.</p>
86<p class="toc_element">
87  <code><a href="#getaccessiblegmbaccounts">getaccessiblegmbaccounts(merchantId, accountId, x__xgafv=None)</a></code></p>
88<p class="firstline">Retrieves the list of accessible Business Profiles.</p>
89<p class="toc_element">
90  <code><a href="#list">list(merchantId, maxResults=None, pageToken=None, x__xgafv=None)</a></code></p>
91<p class="firstline">Lists the LIA settings of the sub-accounts in your Merchant Center account.</p>
92<p class="toc_element">
93  <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
94<p class="firstline">Retrieves the next page of results.</p>
95<p class="toc_element">
96  <code><a href="#listposdataproviders">listposdataproviders(x__xgafv=None)</a></code></p>
97<p class="firstline">Retrieves the list of POS data providers that have active settings for the all eiligible countries.</p>
98<p class="toc_element">
99  <code><a href="#requestgmbaccess">requestgmbaccess(merchantId, accountId, gmbEmail, x__xgafv=None)</a></code></p>
100<p class="firstline">Requests access to a specified Business Profile.</p>
101<p class="toc_element">
102  <code><a href="#requestinventoryverification">requestinventoryverification(merchantId, accountId, country, x__xgafv=None)</a></code></p>
103<p class="firstline">Requests inventory validation for the specified country.</p>
104<p class="toc_element">
105  <code><a href="#setinventoryverificationcontact">setinventoryverificationcontact(merchantId, accountId, country, language, contactName, contactEmail, x__xgafv=None)</a></code></p>
106<p class="firstline">Sets the inventory verification contract for the specified country.</p>
107<p class="toc_element">
108  <code><a href="#setposdataprovider">setposdataprovider(merchantId, accountId, country, posDataProviderId=None, posExternalAccountId=None, x__xgafv=None)</a></code></p>
109<p class="firstline">Sets the POS data provider for the specified country.</p>
110<p class="toc_element">
111  <code><a href="#update">update(merchantId, accountId, body=None, x__xgafv=None)</a></code></p>
112<p class="firstline">Updates the LIA settings of the account. Any fields that are not provided are deleted from the resource.</p>
113<h3>Method Details</h3>
114<div class="method">
115    <code class="details" id="close">close()</code>
116  <pre>Close httplib2 connections.</pre>
117</div>
118
119<div class="method">
120    <code class="details" id="custombatch">custombatch(body=None, x__xgafv=None)</code>
121  <pre>Retrieves and/or updates the LIA settings of multiple accounts in a single request.
122
123Args:
124  body: object, The request body.
125    The object takes the form of:
126
127{
128  &quot;entries&quot;: [ # The request entries to be processed in the batch.
129    {
130      &quot;accountId&quot;: &quot;A String&quot;, # The ID of the account for which to get/update account LIA settings.
131      &quot;batchId&quot;: 42, # An entry ID, unique within the batch request.
132      &quot;contactEmail&quot;: &quot;A String&quot;, # Inventory validation contact email. Required only for SetInventoryValidationContact.
133      &quot;contactName&quot;: &quot;A String&quot;, # Inventory validation contact name. Required only for SetInventoryValidationContact.
134      &quot;country&quot;: &quot;A String&quot;, # The country code. Required only for RequestInventoryVerification.
135      &quot;gmbEmail&quot;: &quot;A String&quot;, # The Business Profile. Required only for RequestGmbAccess.
136      &quot;liaSettings&quot;: { # Local Inventory ads (LIA) settings. All methods except listposdataproviders require the admin role. # The account Lia settings to update. Only defined if the method is `update`.
137        &quot;accountId&quot;: &quot;A String&quot;, # The ID of the account to which these LIA settings belong. Ignored upon update, always present in get request responses.
138        &quot;countrySettings&quot;: [ # The LIA settings for each country.
139          {
140            &quot;about&quot;: { # The settings for the About page.
141              &quot;status&quot;: &quot;A String&quot;, # The status of the verification process for the About page. Acceptable values are: - &quot;`active`&quot; - &quot;`inactive`&quot; - &quot;`pending`&quot;
142              &quot;url&quot;: &quot;A String&quot;, # The URL for the About page.
143            },
144            &quot;country&quot;: &quot;A String&quot;, # Required. CLDR country code (e.g. &quot;US&quot;).
145            &quot;hostedLocalStorefrontActive&quot;: True or False, # The status of the &quot;Merchant hosted local storefront&quot; feature.
146            &quot;inventory&quot;: { # LIA inventory verification settings.
147              &quot;inventoryVerificationContactEmail&quot;: &quot;A String&quot;, # The email of the contact for the inventory verification process.
148              &quot;inventoryVerificationContactName&quot;: &quot;A String&quot;, # The name of the contact for the inventory verification process.
149              &quot;inventoryVerificationContactStatus&quot;: &quot;A String&quot;, # The status of the verification contact. Acceptable values are: - &quot;`active`&quot; - &quot;`inactive`&quot; - &quot;`pending`&quot;
150              &quot;status&quot;: &quot;A String&quot;, # The status of the inventory verification process. Acceptable values are: - &quot;`active`&quot; - &quot;`inactive`&quot; - &quot;`pending`&quot;
151            },
152            &quot;onDisplayToOrder&quot;: { # LIA &quot;On Display To Order&quot; settings.
153              &quot;shippingCostPolicyUrl&quot;: &quot;A String&quot;, # Shipping cost and policy URL.
154              &quot;status&quot;: &quot;A String&quot;, # The status of the ?On display to order? feature. Acceptable values are: - &quot;`active`&quot; - &quot;`inactive`&quot; - &quot;`pending`&quot;
155            },
156            &quot;posDataProvider&quot;: { # The POS data provider linked with this country.
157              &quot;posDataProviderId&quot;: &quot;A String&quot;, # The ID of the POS data provider.
158              &quot;posExternalAccountId&quot;: &quot;A String&quot;, # The account ID by which this merchant is known to the POS data provider.
159            },
160            &quot;storePickupActive&quot;: True or False, # The status of the &quot;Store pickup&quot; feature.
161          },
162        ],
163        &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;`content#liaSettings`&quot;
164      },
165      &quot;merchantId&quot;: &quot;A String&quot;, # The ID of the managing account.
166      &quot;method&quot;: &quot;A String&quot;, # The method of the batch entry. Acceptable values are: - &quot;`get`&quot; - &quot;`getAccessibleGmbAccounts`&quot; - &quot;`requestGmbAccess`&quot; - &quot;`requestInventoryVerification`&quot; - &quot;`setInventoryVerificationContact`&quot; - &quot;`update`&quot;
167      &quot;posDataProviderId&quot;: &quot;A String&quot;, # The ID of POS data provider. Required only for SetPosProvider.
168      &quot;posExternalAccountId&quot;: &quot;A String&quot;, # The account ID by which this merchant is known to the POS provider.
169    },
170  ],
171}
172
173  x__xgafv: string, V1 error format.
174    Allowed values
175      1 - v1 error format
176      2 - v2 error format
177
178Returns:
179  An object of the form:
180
181    {
182  &quot;entries&quot;: [ # The result of the execution of the batch requests.
183    {
184      &quot;batchId&quot;: 42, # The ID of the request entry to which this entry responds.
185      &quot;errors&quot;: { # A list of errors returned by a failed batch entry. # A list of errors defined if, and only if, the request failed.
186        &quot;code&quot;: 42, # The HTTP status of the first error in `errors`.
187        &quot;errors&quot;: [ # A list of errors.
188          { # An error returned by the API.
189            &quot;domain&quot;: &quot;A String&quot;, # The domain of the error.
190            &quot;message&quot;: &quot;A String&quot;, # A description of the error.
191            &quot;reason&quot;: &quot;A String&quot;, # The error code.
192          },
193        ],
194        &quot;message&quot;: &quot;A String&quot;, # The message of the first error in `errors`.
195      },
196      &quot;gmbAccounts&quot;: { # The list of accessible Business Profiles.
197        &quot;accountId&quot;: &quot;A String&quot;, # The ID of the Merchant Center account.
198        &quot;gmbAccounts&quot;: [ # A list of Business Profiles which are available to the merchant.
199          {
200            &quot;email&quot;: &quot;A String&quot;, # The email which identifies the Business Profile.
201            &quot;listingCount&quot;: &quot;A String&quot;, # Number of listings under this account.
202            &quot;name&quot;: &quot;A String&quot;, # The name of the Business Profile.
203            &quot;type&quot;: &quot;A String&quot;, # The type of the Business Profile (User or Business).
204          },
205        ],
206      },
207      &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;`content#liasettingsCustomBatchResponseEntry`&quot;
208      &quot;liaSettings&quot;: { # Local Inventory ads (LIA) settings. All methods except listposdataproviders require the admin role. # The retrieved or updated Lia settings.
209        &quot;accountId&quot;: &quot;A String&quot;, # The ID of the account to which these LIA settings belong. Ignored upon update, always present in get request responses.
210        &quot;countrySettings&quot;: [ # The LIA settings for each country.
211          {
212            &quot;about&quot;: { # The settings for the About page.
213              &quot;status&quot;: &quot;A String&quot;, # The status of the verification process for the About page. Acceptable values are: - &quot;`active`&quot; - &quot;`inactive`&quot; - &quot;`pending`&quot;
214              &quot;url&quot;: &quot;A String&quot;, # The URL for the About page.
215            },
216            &quot;country&quot;: &quot;A String&quot;, # Required. CLDR country code (e.g. &quot;US&quot;).
217            &quot;hostedLocalStorefrontActive&quot;: True or False, # The status of the &quot;Merchant hosted local storefront&quot; feature.
218            &quot;inventory&quot;: { # LIA inventory verification settings.
219              &quot;inventoryVerificationContactEmail&quot;: &quot;A String&quot;, # The email of the contact for the inventory verification process.
220              &quot;inventoryVerificationContactName&quot;: &quot;A String&quot;, # The name of the contact for the inventory verification process.
221              &quot;inventoryVerificationContactStatus&quot;: &quot;A String&quot;, # The status of the verification contact. Acceptable values are: - &quot;`active`&quot; - &quot;`inactive`&quot; - &quot;`pending`&quot;
222              &quot;status&quot;: &quot;A String&quot;, # The status of the inventory verification process. Acceptable values are: - &quot;`active`&quot; - &quot;`inactive`&quot; - &quot;`pending`&quot;
223            },
224            &quot;onDisplayToOrder&quot;: { # LIA &quot;On Display To Order&quot; settings.
225              &quot;shippingCostPolicyUrl&quot;: &quot;A String&quot;, # Shipping cost and policy URL.
226              &quot;status&quot;: &quot;A String&quot;, # The status of the ?On display to order? feature. Acceptable values are: - &quot;`active`&quot; - &quot;`inactive`&quot; - &quot;`pending`&quot;
227            },
228            &quot;posDataProvider&quot;: { # The POS data provider linked with this country.
229              &quot;posDataProviderId&quot;: &quot;A String&quot;, # The ID of the POS data provider.
230              &quot;posExternalAccountId&quot;: &quot;A String&quot;, # The account ID by which this merchant is known to the POS data provider.
231            },
232            &quot;storePickupActive&quot;: True or False, # The status of the &quot;Store pickup&quot; feature.
233          },
234        ],
235        &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;`content#liaSettings`&quot;
236      },
237      &quot;posDataProviders&quot;: [ # The list of POS data providers.
238        {
239          &quot;country&quot;: &quot;A String&quot;, # Country code.
240          &quot;posDataProviders&quot;: [ # A list of POS data providers.
241            {
242              &quot;displayName&quot;: &quot;A String&quot;, # The display name of Pos data Provider.
243              &quot;fullName&quot;: &quot;A String&quot;, # The full name of this POS data Provider.
244              &quot;providerId&quot;: &quot;A String&quot;, # The ID of the account.
245            },
246          ],
247        },
248      ],
249    },
250  ],
251  &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;`content#liasettingsCustomBatchResponse`&quot;.
252}</pre>
253</div>
254
255<div class="method">
256    <code class="details" id="get">get(merchantId, accountId, x__xgafv=None)</code>
257  <pre>Retrieves the LIA settings of the account.
258
259Args:
260  merchantId: string, The ID of the managing account. If this parameter is not the same as accountId, then this account must be a multi-client account and `accountId` must be the ID of a sub-account of this account. (required)
261  accountId: string, The ID of the account for which to get or update LIA settings. (required)
262  x__xgafv: string, V1 error format.
263    Allowed values
264      1 - v1 error format
265      2 - v2 error format
266
267Returns:
268  An object of the form:
269
270    { # Local Inventory ads (LIA) settings. All methods except listposdataproviders require the admin role.
271  &quot;accountId&quot;: &quot;A String&quot;, # The ID of the account to which these LIA settings belong. Ignored upon update, always present in get request responses.
272  &quot;countrySettings&quot;: [ # The LIA settings for each country.
273    {
274      &quot;about&quot;: { # The settings for the About page.
275        &quot;status&quot;: &quot;A String&quot;, # The status of the verification process for the About page. Acceptable values are: - &quot;`active`&quot; - &quot;`inactive`&quot; - &quot;`pending`&quot;
276        &quot;url&quot;: &quot;A String&quot;, # The URL for the About page.
277      },
278      &quot;country&quot;: &quot;A String&quot;, # Required. CLDR country code (e.g. &quot;US&quot;).
279      &quot;hostedLocalStorefrontActive&quot;: True or False, # The status of the &quot;Merchant hosted local storefront&quot; feature.
280      &quot;inventory&quot;: { # LIA inventory verification settings.
281        &quot;inventoryVerificationContactEmail&quot;: &quot;A String&quot;, # The email of the contact for the inventory verification process.
282        &quot;inventoryVerificationContactName&quot;: &quot;A String&quot;, # The name of the contact for the inventory verification process.
283        &quot;inventoryVerificationContactStatus&quot;: &quot;A String&quot;, # The status of the verification contact. Acceptable values are: - &quot;`active`&quot; - &quot;`inactive`&quot; - &quot;`pending`&quot;
284        &quot;status&quot;: &quot;A String&quot;, # The status of the inventory verification process. Acceptable values are: - &quot;`active`&quot; - &quot;`inactive`&quot; - &quot;`pending`&quot;
285      },
286      &quot;onDisplayToOrder&quot;: { # LIA &quot;On Display To Order&quot; settings.
287        &quot;shippingCostPolicyUrl&quot;: &quot;A String&quot;, # Shipping cost and policy URL.
288        &quot;status&quot;: &quot;A String&quot;, # The status of the ?On display to order? feature. Acceptable values are: - &quot;`active`&quot; - &quot;`inactive`&quot; - &quot;`pending`&quot;
289      },
290      &quot;posDataProvider&quot;: { # The POS data provider linked with this country.
291        &quot;posDataProviderId&quot;: &quot;A String&quot;, # The ID of the POS data provider.
292        &quot;posExternalAccountId&quot;: &quot;A String&quot;, # The account ID by which this merchant is known to the POS data provider.
293      },
294      &quot;storePickupActive&quot;: True or False, # The status of the &quot;Store pickup&quot; feature.
295    },
296  ],
297  &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;`content#liaSettings`&quot;
298}</pre>
299</div>
300
301<div class="method">
302    <code class="details" id="getaccessiblegmbaccounts">getaccessiblegmbaccounts(merchantId, accountId, x__xgafv=None)</code>
303  <pre>Retrieves the list of accessible Business Profiles.
304
305Args:
306  merchantId: string, The ID of the managing account. If this parameter is not the same as accountId, then this account must be a multi-client account and `accountId` must be the ID of a sub-account of this account. (required)
307  accountId: string, The ID of the account for which to retrieve accessible Business Profiles. (required)
308  x__xgafv: string, V1 error format.
309    Allowed values
310      1 - v1 error format
311      2 - v2 error format
312
313Returns:
314  An object of the form:
315
316    {
317  &quot;accountId&quot;: &quot;A String&quot;, # The ID of the Merchant Center account.
318  &quot;gmbAccounts&quot;: [ # A list of Business Profiles which are available to the merchant.
319    {
320      &quot;email&quot;: &quot;A String&quot;, # The email which identifies the Business Profile.
321      &quot;listingCount&quot;: &quot;A String&quot;, # Number of listings under this account.
322      &quot;name&quot;: &quot;A String&quot;, # The name of the Business Profile.
323      &quot;type&quot;: &quot;A String&quot;, # The type of the Business Profile (User or Business).
324    },
325  ],
326  &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;`content#liasettingsGetAccessibleGmbAccountsResponse`&quot;.
327}</pre>
328</div>
329
330<div class="method">
331    <code class="details" id="list">list(merchantId, maxResults=None, pageToken=None, x__xgafv=None)</code>
332  <pre>Lists the LIA settings of the sub-accounts in your Merchant Center account.
333
334Args:
335  merchantId: string, The ID of the managing account. This must be a multi-client account. (required)
336  maxResults: integer, The maximum number of LIA settings to return in the response, used for paging.
337  pageToken: string, The token returned by the previous request.
338  x__xgafv: string, V1 error format.
339    Allowed values
340      1 - v1 error format
341      2 - v2 error format
342
343Returns:
344  An object of the form:
345
346    {
347  &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;`content#liasettingsListResponse`&quot;.
348  &quot;nextPageToken&quot;: &quot;A String&quot;, # The token for the retrieval of the next page of LIA settings.
349  &quot;resources&quot;: [
350    { # Local Inventory ads (LIA) settings. All methods except listposdataproviders require the admin role.
351      &quot;accountId&quot;: &quot;A String&quot;, # The ID of the account to which these LIA settings belong. Ignored upon update, always present in get request responses.
352      &quot;countrySettings&quot;: [ # The LIA settings for each country.
353        {
354          &quot;about&quot;: { # The settings for the About page.
355            &quot;status&quot;: &quot;A String&quot;, # The status of the verification process for the About page. Acceptable values are: - &quot;`active`&quot; - &quot;`inactive`&quot; - &quot;`pending`&quot;
356            &quot;url&quot;: &quot;A String&quot;, # The URL for the About page.
357          },
358          &quot;country&quot;: &quot;A String&quot;, # Required. CLDR country code (e.g. &quot;US&quot;).
359          &quot;hostedLocalStorefrontActive&quot;: True or False, # The status of the &quot;Merchant hosted local storefront&quot; feature.
360          &quot;inventory&quot;: { # LIA inventory verification settings.
361            &quot;inventoryVerificationContactEmail&quot;: &quot;A String&quot;, # The email of the contact for the inventory verification process.
362            &quot;inventoryVerificationContactName&quot;: &quot;A String&quot;, # The name of the contact for the inventory verification process.
363            &quot;inventoryVerificationContactStatus&quot;: &quot;A String&quot;, # The status of the verification contact. Acceptable values are: - &quot;`active`&quot; - &quot;`inactive`&quot; - &quot;`pending`&quot;
364            &quot;status&quot;: &quot;A String&quot;, # The status of the inventory verification process. Acceptable values are: - &quot;`active`&quot; - &quot;`inactive`&quot; - &quot;`pending`&quot;
365          },
366          &quot;onDisplayToOrder&quot;: { # LIA &quot;On Display To Order&quot; settings.
367            &quot;shippingCostPolicyUrl&quot;: &quot;A String&quot;, # Shipping cost and policy URL.
368            &quot;status&quot;: &quot;A String&quot;, # The status of the ?On display to order? feature. Acceptable values are: - &quot;`active`&quot; - &quot;`inactive`&quot; - &quot;`pending`&quot;
369          },
370          &quot;posDataProvider&quot;: { # The POS data provider linked with this country.
371            &quot;posDataProviderId&quot;: &quot;A String&quot;, # The ID of the POS data provider.
372            &quot;posExternalAccountId&quot;: &quot;A String&quot;, # The account ID by which this merchant is known to the POS data provider.
373          },
374          &quot;storePickupActive&quot;: True or False, # The status of the &quot;Store pickup&quot; feature.
375        },
376      ],
377      &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;`content#liaSettings`&quot;
378    },
379  ],
380}</pre>
381</div>
382
383<div class="method">
384    <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
385  <pre>Retrieves the next page of results.
386
387Args:
388  previous_request: The request for the previous page. (required)
389  previous_response: The response from the request for the previous page. (required)
390
391Returns:
392  A request object that you can call &#x27;execute()&#x27; on to request the next
393  page. Returns None if there are no more items in the collection.
394    </pre>
395</div>
396
397<div class="method">
398    <code class="details" id="listposdataproviders">listposdataproviders(x__xgafv=None)</code>
399  <pre>Retrieves the list of POS data providers that have active settings for the all eiligible countries.
400
401Args:
402  x__xgafv: string, V1 error format.
403    Allowed values
404      1 - v1 error format
405      2 - v2 error format
406
407Returns:
408  An object of the form:
409
410    {
411  &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;`content#liasettingsListPosDataProvidersResponse`&quot;.
412  &quot;posDataProviders&quot;: [ # The list of POS data providers for each eligible country
413    {
414      &quot;country&quot;: &quot;A String&quot;, # Country code.
415      &quot;posDataProviders&quot;: [ # A list of POS data providers.
416        {
417          &quot;displayName&quot;: &quot;A String&quot;, # The display name of Pos data Provider.
418          &quot;fullName&quot;: &quot;A String&quot;, # The full name of this POS data Provider.
419          &quot;providerId&quot;: &quot;A String&quot;, # The ID of the account.
420        },
421      ],
422    },
423  ],
424}</pre>
425</div>
426
427<div class="method">
428    <code class="details" id="requestgmbaccess">requestgmbaccess(merchantId, accountId, gmbEmail, x__xgafv=None)</code>
429  <pre>Requests access to a specified Business Profile.
430
431Args:
432  merchantId: string, The ID of the managing account. If this parameter is not the same as accountId, then this account must be a multi-client account and `accountId` must be the ID of a sub-account of this account. (required)
433  accountId: string, The ID of the account for which Business Profile access is requested. (required)
434  gmbEmail: string, The email of the Business Profile. (required)
435  x__xgafv: string, V1 error format.
436    Allowed values
437      1 - v1 error format
438      2 - v2 error format
439
440Returns:
441  An object of the form:
442
443    {
444  &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;`content#liasettingsRequestGmbAccessResponse`&quot;.
445}</pre>
446</div>
447
448<div class="method">
449    <code class="details" id="requestinventoryverification">requestinventoryverification(merchantId, accountId, country, x__xgafv=None)</code>
450  <pre>Requests inventory validation for the specified country.
451
452Args:
453  merchantId: string, The ID of the managing account. If this parameter is not the same as accountId, then this account must be a multi-client account and `accountId` must be the ID of a sub-account of this account. (required)
454  accountId: string, The ID of the account that manages the order. This cannot be a multi-client account. (required)
455  country: string, The country for which inventory validation is requested. (required)
456  x__xgafv: string, V1 error format.
457    Allowed values
458      1 - v1 error format
459      2 - v2 error format
460
461Returns:
462  An object of the form:
463
464    {
465  &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;`content#liasettingsRequestInventoryVerificationResponse`&quot;.
466}</pre>
467</div>
468
469<div class="method">
470    <code class="details" id="setinventoryverificationcontact">setinventoryverificationcontact(merchantId, accountId, country, language, contactName, contactEmail, x__xgafv=None)</code>
471  <pre>Sets the inventory verification contract for the specified country.
472
473Args:
474  merchantId: string, The ID of the managing account. If this parameter is not the same as accountId, then this account must be a multi-client account and `accountId` must be the ID of a sub-account of this account. (required)
475  accountId: string, The ID of the account that manages the order. This cannot be a multi-client account. (required)
476  country: string, The country for which inventory verification is requested. (required)
477  language: string, The language for which inventory verification is requested. (required)
478  contactName: string, The name of the inventory verification contact. (required)
479  contactEmail: string, The email of the inventory verification contact. (required)
480  x__xgafv: string, V1 error format.
481    Allowed values
482      1 - v1 error format
483      2 - v2 error format
484
485Returns:
486  An object of the form:
487
488    {
489  &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;`content#liasettingsSetInventoryVerificationContactResponse`&quot;.
490}</pre>
491</div>
492
493<div class="method">
494    <code class="details" id="setposdataprovider">setposdataprovider(merchantId, accountId, country, posDataProviderId=None, posExternalAccountId=None, x__xgafv=None)</code>
495  <pre>Sets the POS data provider for the specified country.
496
497Args:
498  merchantId: string, The ID of the managing account. If this parameter is not the same as accountId, then this account must be a multi-client account and `accountId` must be the ID of a sub-account of this account. (required)
499  accountId: string, The ID of the account for which to retrieve accessible Business Profiles. (required)
500  country: string, The country for which the POS data provider is selected. (required)
501  posDataProviderId: string, The ID of POS data provider.
502  posExternalAccountId: string, The account ID by which this merchant is known to the POS data provider.
503  x__xgafv: string, V1 error format.
504    Allowed values
505      1 - v1 error format
506      2 - v2 error format
507
508Returns:
509  An object of the form:
510
511    {
512  &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;`content#liasettingsSetPosDataProviderResponse`&quot;.
513}</pre>
514</div>
515
516<div class="method">
517    <code class="details" id="update">update(merchantId, accountId, body=None, x__xgafv=None)</code>
518  <pre>Updates the LIA settings of the account. Any fields that are not provided are deleted from the resource.
519
520Args:
521  merchantId: string, The ID of the managing account. If this parameter is not the same as accountId, then this account must be a multi-client account and `accountId` must be the ID of a sub-account of this account. (required)
522  accountId: string, The ID of the account for which to get or update LIA settings. (required)
523  body: object, The request body.
524    The object takes the form of:
525
526{ # Local Inventory ads (LIA) settings. All methods except listposdataproviders require the admin role.
527  &quot;accountId&quot;: &quot;A String&quot;, # The ID of the account to which these LIA settings belong. Ignored upon update, always present in get request responses.
528  &quot;countrySettings&quot;: [ # The LIA settings for each country.
529    {
530      &quot;about&quot;: { # The settings for the About page.
531        &quot;status&quot;: &quot;A String&quot;, # The status of the verification process for the About page. Acceptable values are: - &quot;`active`&quot; - &quot;`inactive`&quot; - &quot;`pending`&quot;
532        &quot;url&quot;: &quot;A String&quot;, # The URL for the About page.
533      },
534      &quot;country&quot;: &quot;A String&quot;, # Required. CLDR country code (e.g. &quot;US&quot;).
535      &quot;hostedLocalStorefrontActive&quot;: True or False, # The status of the &quot;Merchant hosted local storefront&quot; feature.
536      &quot;inventory&quot;: { # LIA inventory verification settings.
537        &quot;inventoryVerificationContactEmail&quot;: &quot;A String&quot;, # The email of the contact for the inventory verification process.
538        &quot;inventoryVerificationContactName&quot;: &quot;A String&quot;, # The name of the contact for the inventory verification process.
539        &quot;inventoryVerificationContactStatus&quot;: &quot;A String&quot;, # The status of the verification contact. Acceptable values are: - &quot;`active`&quot; - &quot;`inactive`&quot; - &quot;`pending`&quot;
540        &quot;status&quot;: &quot;A String&quot;, # The status of the inventory verification process. Acceptable values are: - &quot;`active`&quot; - &quot;`inactive`&quot; - &quot;`pending`&quot;
541      },
542      &quot;onDisplayToOrder&quot;: { # LIA &quot;On Display To Order&quot; settings.
543        &quot;shippingCostPolicyUrl&quot;: &quot;A String&quot;, # Shipping cost and policy URL.
544        &quot;status&quot;: &quot;A String&quot;, # The status of the ?On display to order? feature. Acceptable values are: - &quot;`active`&quot; - &quot;`inactive`&quot; - &quot;`pending`&quot;
545      },
546      &quot;posDataProvider&quot;: { # The POS data provider linked with this country.
547        &quot;posDataProviderId&quot;: &quot;A String&quot;, # The ID of the POS data provider.
548        &quot;posExternalAccountId&quot;: &quot;A String&quot;, # The account ID by which this merchant is known to the POS data provider.
549      },
550      &quot;storePickupActive&quot;: True or False, # The status of the &quot;Store pickup&quot; feature.
551    },
552  ],
553  &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;`content#liaSettings`&quot;
554}
555
556  x__xgafv: string, V1 error format.
557    Allowed values
558      1 - v1 error format
559      2 - v2 error format
560
561Returns:
562  An object of the form:
563
564    { # Local Inventory ads (LIA) settings. All methods except listposdataproviders require the admin role.
565  &quot;accountId&quot;: &quot;A String&quot;, # The ID of the account to which these LIA settings belong. Ignored upon update, always present in get request responses.
566  &quot;countrySettings&quot;: [ # The LIA settings for each country.
567    {
568      &quot;about&quot;: { # The settings for the About page.
569        &quot;status&quot;: &quot;A String&quot;, # The status of the verification process for the About page. Acceptable values are: - &quot;`active`&quot; - &quot;`inactive`&quot; - &quot;`pending`&quot;
570        &quot;url&quot;: &quot;A String&quot;, # The URL for the About page.
571      },
572      &quot;country&quot;: &quot;A String&quot;, # Required. CLDR country code (e.g. &quot;US&quot;).
573      &quot;hostedLocalStorefrontActive&quot;: True or False, # The status of the &quot;Merchant hosted local storefront&quot; feature.
574      &quot;inventory&quot;: { # LIA inventory verification settings.
575        &quot;inventoryVerificationContactEmail&quot;: &quot;A String&quot;, # The email of the contact for the inventory verification process.
576        &quot;inventoryVerificationContactName&quot;: &quot;A String&quot;, # The name of the contact for the inventory verification process.
577        &quot;inventoryVerificationContactStatus&quot;: &quot;A String&quot;, # The status of the verification contact. Acceptable values are: - &quot;`active`&quot; - &quot;`inactive`&quot; - &quot;`pending`&quot;
578        &quot;status&quot;: &quot;A String&quot;, # The status of the inventory verification process. Acceptable values are: - &quot;`active`&quot; - &quot;`inactive`&quot; - &quot;`pending`&quot;
579      },
580      &quot;onDisplayToOrder&quot;: { # LIA &quot;On Display To Order&quot; settings.
581        &quot;shippingCostPolicyUrl&quot;: &quot;A String&quot;, # Shipping cost and policy URL.
582        &quot;status&quot;: &quot;A String&quot;, # The status of the ?On display to order? feature. Acceptable values are: - &quot;`active`&quot; - &quot;`inactive`&quot; - &quot;`pending`&quot;
583      },
584      &quot;posDataProvider&quot;: { # The POS data provider linked with this country.
585        &quot;posDataProviderId&quot;: &quot;A String&quot;, # The ID of the POS data provider.
586        &quot;posExternalAccountId&quot;: &quot;A String&quot;, # The account ID by which this merchant is known to the POS data provider.
587      },
588      &quot;storePickupActive&quot;: True or False, # The status of the &quot;Store pickup&quot; feature.
589    },
590  ],
591  &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;`content#liaSettings`&quot;
592}</pre>
593</div>
594
595</body></html>