Restez organisé à l'aide des collections
Enregistrez et classez les contenus selon vos préférences.
Une fois que vous avez configuré votre compte Merchant Center pour les annonces produits en magasin et ajouté les données produit et d'inventaire appropriées, Google vérifie l'exactitude des informations fournies sur les produits et l'inventaire via la procédure de vérification de l'inventaire. Configurez des contacts de vérification de l'inventaire au début du processus d'intégration afin qu'ils soient vérifiés dès que vous demandez la vérification de votre inventaire, opération que vous devrez réaliser une fois que vous aurez terminé toutes les autres étapes de ce guide.
Ajouter des contacts de vérification de l'inventaire
Comme pour les URL des pages "À propos" et des produits disponibles sur commande, vous pouvez savoir si le contact a été validé en appelant la méthode liasettings.get :
Une fois que tous les champs autres que countrySettings[].inventory.status présentent l'état active, vous pouvez demander la vérification initiale de l'inventaire. Pour ce faire, appelez la méthode liasettings.requestinventoryverification :
Lorsque la valeur du champ status passe à active, vous avez terminé le processus d'intégration des annonces produits en magasin. Félicitations !
Sauf indication contraire, le contenu de cette page est régi par une licence Creative Commons Attribution 4.0, et les échantillons de code sont régis par une licence Apache 2.0. Pour en savoir plus, consultez les Règles du site Google Developers. Java est une marque déposée d'Oracle et/ou de ses sociétés affiliées.
Dernière mise à jour le 2025/08/13 (UTC).
[[["Facile à comprendre","easyToUnderstand","thumb-up"],["J'ai pu résoudre mon problème","solvedMyProblem","thumb-up"],["Autre","otherUp","thumb-up"]],[["Il n'y a pas l'information dont j'ai besoin","missingTheInformationINeed","thumb-down"],["Trop compliqué/Trop d'étapes","tooComplicatedTooManySteps","thumb-down"],["Obsolète","outOfDate","thumb-down"],["Problème de traduction","translationIssue","thumb-down"],["Mauvais exemple/Erreur de code","samplesCodeIssue","thumb-down"],["Autre","otherDown","thumb-down"]],["Dernière mise à jour le 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!"]]