קל לארגן דפים בעזרת אוספים
אפשר לשמור ולסווג תוכן על סמך ההעדפות שלך.
אחרי שמגדירים את חשבון Merchant Center לשימוש בתכונה 'זמינות מלאי מקומי' ומוסיפים את נתוני המוצרים והמלאי המתאימים, Google בודקת את הדיוק של פרטי המוצרים והמלאי שסופקו באמצעות תהליך אימות המלאי. מומלץ להגדיר את אנשי הקשר לאימות המלאי כשמתחילים את תהליך ההצטרפות, כדי שהם יאומתו כשיהיה אפשר לבקש אימות מלאי. את הבקשה הזו שולחים אחרי שמסיימים את כל השלבים האחרים במדריך הזה.
בדומה לכתובות ה-URL של דף המידע ודף המוצרים שהוגדרו בסטטוס 'בתצוגה, למכירה בהזמנה בלבד', אפשר לבדוק אם איש הקשר אומת באמצעות הקריאה לשיטה liasettings.get:
אחרי שכל שדות הסטטוס, מלבד countrySettings[].inventory.status, יופיעו כactive, תוכלו לבקש את הבדיקה הראשונית של אימות המלאי. כדי לעשות את זה, קוראים לשיטה liasettings.requestinventoryverification:
[[["התוכן קל להבנה","easyToUnderstand","thumb-up"],["התוכן עזר לי לפתור בעיה","solvedMyProblem","thumb-up"],["סיבה אחרת","otherUp","thumb-up"]],[["חסרים לי מידע או פרטים","missingTheInformationINeed","thumb-down"],["התוכן מורכב מדי או עם יותר מדי שלבים","tooComplicatedTooManySteps","thumb-down"],["התוכן לא עדכני","outOfDate","thumb-down"],["בעיה בתרגום","translationIssue","thumb-down"],["בעיה בדוגמאות/בקוד","samplesCodeIssue","thumb-down"],["סיבה אחרת","otherDown","thumb-down"]],["עדכון אחרון: 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!"]]