ローカル在庫広告関連の設定は、
liasettings
サービス。
liasettings.update
を呼び出して、ローカル在庫広告を配信する国を指定します。次の例をご覧ください。
PUT https://shoppingcontent.googleapis.com/content/v2.1/12345/liasettings/67890
{
"accountId" : 67890,
"countrySettings" : [{
"country" : "US"
}]
}
ページについて
また、オーストリア、ドイツ、スイスで配信している場合は、概要ページも登録する必要があります。たとえば、米国とドイツで広告を配信するには、次のような情報を登録します。
PUT https://shoppingcontent.googleapis.com/content/v2.1/12345/liasettings/67890
{
"accountId" : 67890,
"countrySettings" : [{
"country" : "US"
},
{
"country" : "DE",
"about" : {
"url" : "https://www.example.com/de/about"
}
}]
}
この URL が確認されるまで、在庫確認をリクエストすることはできません。詳細
URL の確認ステータス、
liasettings.get
を押して、
関連するステータス フィールドの値:
GET https://shoppingcontent.googleapis.com/content/v2.1/12345/liasettings/67890
Response:
200 OK
{
"kind": "content#liaSettings",
"accountId" : 67890,
"countrySettings" : [{
"country" : "US"
},
{
"country" : "DE",
"about" : {
"url" : "https://www.example.com/de/about",
"status" : "pending"
}
}]
}
URL に関連付けられたステータスが active
に変わると、URL は次のようになります。
確認しました。ステータスが inactive
の場合は、対処する必要がある問題があります。
ご確認ください。問題に対処したら、新しいトリガーを
確認するには
設定に、概要ページと同じ場所か既存の場所か
変更されました。
見本展示ありと店舗の注文に関するポリシーのページ
「新規顧客の獲得」目標を on_display_to_order(見本展示あり) 国ごとに設定する必要があります。
PUT https://shoppingcontent.googleapis.com/content/v2.1/12345/liasettings/67890
{
"accountId" : 67890,
"countrySettings" : [{
"country" : "US",
"onDisplayToOrder": {
"shippingCostPolicyUrl" : "https://www.example.com/inStoreOrderPolicy"
}
}]
}
ODO に使用する URL は、リクエストする前に確認する必要があります。 在庫確認オーナー確認の確認やリクエストの手続き 問題が発生した場合、ポリシー URL の再審査は、 概要ページ:
GET https://shoppingcontent.googleapis.com/content/v2.1/12345/liasettings/67890
Response:
200 OK
{
"kind": "content#liaSettings",
"accountId" : 67890,
"countrySettings" : [{
"country" : "US",
"onDisplayToOrder": {
"shippingCostPolicyUrl" : "https://www.example.com/inStoreOrderPolicy",
"status" : "pending"
}
}]
}