LIA용 판매자 센터 계정을 설정하고 적절한 제품 및 인벤토리 데이터를 추가하면 Google에서 인벤토리 확인 절차를 통해 제공된 제품 및 인벤토리 정보의 정확성을 확인합니다. 온보딩 프로세스를 시작할 때 인벤토리 확인 담당자를 설정하여 이 가이드의 다른 모든 단계를 완료한 후 인벤토리 확인을 요청할 준비가 되면 확인을 받을 수 있도록 해야 합니다.
[null,null,["최종 업데이트: 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!"]]