Sử dụng bộ sưu tập để sắp xếp ngăn nắp các trang
Lưu và phân loại nội dung dựa trên lựa chọn ưu tiên của bạn.
Sau khi bạn thiết lập tài khoản Merchant Center cho quảng cáo kho hàng tại địa phương và thêm dữ liệu sản phẩm cũng như kho hàng phù hợp, Google sẽ kiểm tra độ chính xác của thông tin sản phẩm và kho hàng mà bạn cung cấp thông qua quy trình xác minh kho hàng. Bạn nên thiết lập thông tin liên hệ để xác minh kho hàng khi bắt đầu quy trình tham gia. Nhờ đó, thông tin liên hệ sẽ được xác minh khi bạn sẵn sàng yêu cầu xác minh kho hàng. Bạn sẽ thực hiện việc này sau khi hoàn tất mọi việc khác trong hướng dẫn này.
Sau khi tất cả các trường trạng thái khác ngoài countrySettings[].inventory.status được liệt kê là active, bạn có thể yêu cầu kiểm tra xác minh kho hàng ban đầu. Để làm việc này, hãy gọi phương thức liasettings.requestinventoryverification:
[[["Dễ hiểu","easyToUnderstand","thumb-up"],["Giúp tôi giải quyết được vấn đề","solvedMyProblem","thumb-up"],["Khác","otherUp","thumb-up"]],[["Thiếu thông tin tôi cần","missingTheInformationINeed","thumb-down"],["Quá phức tạp/quá nhiều bước","tooComplicatedTooManySteps","thumb-down"],["Đã lỗi thời","outOfDate","thumb-down"],["Vấn đề về bản dịch","translationIssue","thumb-down"],["Vấn đề về mẫu/mã","samplesCodeIssue","thumb-down"],["Khác","otherDown","thumb-down"]],["Cập nhật lần gần đây nhất: 2025-08-13 UTC."],[[["\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!"]]