為店面商品廣告設定 Merchant Center 帳戶,並新增適當的產品和商品目錄資料後,Google 會透過商品目錄驗證程序,檢查提供的產品和商品目錄資訊是否正確。開始新手上路程序時,請先設定商品目錄驗證聯絡人,這樣一來,當你完成本指南中的所有其他步驟,並準備好申請商品目錄驗證時,系統就會驗證這些聯絡人。
[null,null,["上次更新時間:2025-08-13 (世界標準時間)。"],[[["\u003cp\u003eThe Merchant API is the new version of the Content API for Shopping and represents the future of the platform.\u003c/p\u003e\n"],["\u003cp\u003eGoogle performs inventory verification to ensure the accuracy of provided product and inventory information.\u003c/p\u003e\n"],["\u003cp\u003eBefore requesting inventory verification, ensure all other onboarding steps are completed and statuses are 'active'.\u003c/p\u003e\n"],["\u003cp\u003eUsers should add inventory verification contacts early in the process to ensure timely verification.\u003c/p\u003e\n"],["\u003cp\u003eAfter successful inventory verification, the 'status' field will change to 'active', indicating completion of the LIA onboarding process.\u003c/p\u003e\n"]]],["The new Merchant API beta is introduced as the evolution of the Content API for Shopping. To set up inventory verification, users must add contact information using the `liasettings.setinventoryverificationcontact` method. Verification status can be checked via `liasettings.get`. After completing all other onboarding steps, users request inventory verification with `liasettings.requestinventoryverification`. Verification status is monitored by getting the account settings, and a successful onboarding is confirmed when the inventory's status changes to `active`.\n"],null,["# Verify your inventory\n\nOnce you've set up your Merchant Center account for LIA and added appropriate\nproduct and inventory data, Google checks the accuracy of the provided product\nand inventory information through the\n[inventory verification](https://support.google.com/merchants/answer/7083859)\nprocess. You should go ahead and set up the inventory verification contacts when\nyou begin the onboarding process so they'll be verified once you're ready to\nrequest inventory verification, which you will do after finishing everything\nelse in this guide.\n\nAdd inventory verification contacts\n-----------------------------------\n\nTo add contact information for the inventory verification process, use the\n[`liasettings.setinventoryverificationcontact`](/shopping-content/reference/rest/v2.1/liasettings/setinventoryverificationcontact)\nmethod: \n\n POST https://shoppingcontent.googleapis.com/content/v2.1/12345/liasettings/67890/setinventoryverificationcontact?contactEmail=invcheck@example.com&contactName=Inventory%20Manager&country=US&language=en\n\nJust as with the About and ODO page URLs, you can check whether the contact has\nbeen verified by calling the\n[`liasettings.get`](/shopping-content/reference/rest/v2.1/liasettings/get) method: \n\n GET https://shoppingcontent.googleapis.com/content/v2.1/12345/liasettings/67890\n\n Response:\n 200 OK\n {\n \"kind\": \"content#liaSettings\",\n \"accountId\" : 67890,\n \"countrySettings\" : [{\n \"country\" : \"US\",\n \"inventory\" : {\n \"inventoryVerificationContactName\" : \"Inventory Manager\",\n \"inventoryVerificationContactEmail\" : \"invcheck@example.com\",\n \"inventoryVerificationContactStatus\" : \"pending\"\n }\n }]\n }\n\nRequest inventory verification\n------------------------------\n\n| **Caution:** Before you start this step, you must have completed all other sections of [this guide](/shopping-content/guides/how-tos/lia/get-started).\n\nOnce all the status fields other than `countrySettings[].inventory.status` are\nlisted as `active`, you're ready to request the initial inventory verification\ncheck. To do this, call the\n[`liasettings.requestinventoryverification`](/shopping-content/reference/rest/v2.1/liasettings/requestinventoryverification)\nmethod: \n\n POST https://shoppingcontent.googleapis.com/content/v2.1/12345/liasettings/67890/requestinventoryverification/US\n\nYou can check the status of the verification process by retrieving the LIA\nsettings for the account: \n\n GET https://shoppingcontent.googleapis.com/content/v2.1/12345/liasettings/67890\n\n Response:\n 200 OK\n {\n \"kind\": \"content#liaSettings\",\n \"accountId\" : 67890,\n \"countrySettings\" : [{\n \"country\" : \"US\",\n \"inventory\": {\n \"inventoryVerificationContactName\" : \"Inventory Manager\",\n \"inventoryVerificationContactEmail\" : \"invcheck@example.com\",\n \"inventoryVerificationContactStatus\" : \"active\",\n \"status\" : \"pending\"\n }\n }]\n }\n\nOnce the value of the `status` field changes to `active`, congratulations,\nyou've finished the LIA onboarding process!"]]