Управляйте своими продуктами
Оптимизируйте свои подборки
Сохраняйте и классифицируйте контент в соответствии со своими настройками.
Подинтерфейс API «Продукты» позволяет программно управлять ассортиментом товаров в Google Merchant Center. Вы можете создавать, извлекать, обновлять и удалять товары, что обеспечивает гибкую интеграцию ваших систем напрямую с Google.
Ключевой концепцией Merchant API является различие между отправляемыми вами данными и конечным продуктом, который использует Google. Такое разделение обеспечивает более чёткую модель жизненного цикла данных о товаре и более точный контроль над информацией о нём. API отражает это двумя основными ресурсами:
ProductInput
: представляет собой необработанные данные о товарах, которые вы отправляете в определенный источник данных. Представьте себе строку, загружаемую в файл фида, или данные, отправляемые с помощью вызова API до обработки Merchant Center. Этот ресурс используется для всех операций записи ( insert
, patch
, delete
).
Product
: это ресурс, доступный только для чтения, который представляет собой конечный обработанный продукт, отображаемый в Merchant Center и на поверхностях Google. Он формируется из одного основного ресурса ProductInput
и нуля или более дополнительных ресурсов ProductInput
после применения всех правил фида и обработки. Этот ресурс содержит информацию о конечном статусе продукта и любых проблемах с качеством данных. Этот ресурс используется для всех операций чтения ( get
, list
).
Формат и требования ко всем атрибутам продукта, отправляемым с использованием ресурса ProductInput
, определены в спецификации данных о продукте .
Что можно делать с помощью подAPI «Продукты»
Подпрограмма API «Продукты» позволяет выполнять следующие ключевые задачи. Ознакомьтесь с руководствами, чтобы получить подробные инструкции и примеры кода для каждого варианта использования.
- Добавление и управление продуктами : узнайте, как добавлять новые продукты в свою учетную запись, предоставлять дополнительные данные по существующим и удалять продукты, которые вы больше не продаете.
- Регулярно обновляйте свои продукты : узнайте, как эффективно выполнять частичные обновления часто меняющихся атрибутов продукта, таких как цена и доступность.
- Перечислите данные о ваших продуктах и проблемы с ними : узнайте, как получить доступ к обработанным продуктам, проверить статус их утверждения для разных пунктов назначения и выявить любые проблемы с качеством данных, которые могут повлиять на их видимость.
Прежде чем начать
Перед использованием под-API «Продукты» необходимо создать хотя бы один источник данных API в вашей учётной записи Merchant Center. Под-API «Продукты» позволяет добавлять и обновлять товары только в источниках данных типа API
. Инструкции см. в руководстве «Управление источниками данных API для загрузки товаров» .
Если не указано иное, контент на этой странице предоставляется по лицензии Creative Commons "С указанием авторства 4.0", а примеры кода – по лицензии Apache 2.0. Подробнее об этом написано в правилах сайта. Java – это зарегистрированный товарный знак корпорации Oracle и ее аффилированных лиц.
Последнее обновление: 2025-08-12 UTC.
[null,null,["Последнее обновление: 2025-08-12 UTC."],[[["\u003cp\u003eThe Merchant Products API allows you to programmatically manage your product data, including inserting, updating, retrieving, and deleting products.\u003c/p\u003e\n"],["\u003cp\u003eProducts are managed through two key resources: \u003ccode\u003eproductInputs\u003c/code\u003e (representing input data) and \u003ccode\u003eproducts\u003c/code\u003e (representing processed products in the Shopping database).\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eproductInputs\u003c/code\u003e can be primary or supplementary and are used to construct the final \u003ccode\u003eproduct\u003c/code\u003e that appears in your online or local store catalogs.\u003c/p\u003e\n"],["\u003cp\u003eThe API offers advantages over file-based uploads, such as faster response times and real-time updates.\u003c/p\u003e\n"],["\u003cp\u003eBefore using the API, ensure you have a data source set up and are familiar with Shopping Ads and free listings policies.\u003c/p\u003e\n"]]],["The Merchant Products API allows programmatic product data management via `productInputs` and `products` resources. Actions include inserting `productInput` data with required fields like `channel`, `offerId`, `contentLanguage`, and `feedLabel` using `accounts.productInputs.insert`. Processed products can be retrieved using `accounts.products.get` and listed with `accounts.products.list`. Product inputs are deleted using `accounts.productInputs.delete`, specifying the data source. Products are built from primary and supplemental data sources, enabling real-time catalog management. You can use Batch mode to manage many products.\n"],null,["# Manage your products\n\nThe Products sub-API lets you programmatically manage your product inventory in\nGoogle Merchant Center. You can create, retrieve, update, and delete products,\ngiving you the flexibility to integrate your systems directly with Google.\n\nA key concept in Merchant API is the distinction between the data you submit and\nthe final product that Google uses. This separation provides a clearer model of\nthe product data lifecycle and gives you more precise control over your product\ninformation. The API reflects this with two main resources:\n\n- **[`ProductInput`](/merchant/api/reference/rest/products_v1/accounts.productInputs#ProductInput):**\n This represents the raw product data you submit to a specific data source.\n Think of this as the row you upload in a feed file or the data you submit\n with an API call before any Merchant Center processing happens. You use this\n resource for all **write** operations (`insert`, `patch`, `delete`).\n\n- **[`Product`](/merchant/api/reference/rest/products_v1/accounts.products#Product):**\n This is a read-only resource that represents the final, processed product as\n it appears in Merchant Center and on Google surfaces. It is built from one\n primary `ProductInput` and zero or more supplemental `ProductInput`\n resources after all feed rules and processing have been applied. This\n resource includes the product's final status and any data quality issues.\n You use this resource for all **read** operations (`get`, `list`).\n\nThe format and requirements for all product attributes submitted using the\n`ProductInput` resource are defined in the [Product data\nspecification](https://support.google.com/merchants/answer/7052112).\n\nWhat you can do with the Products sub-API\n-----------------------------------------\n\nThe Products sub-API lets you to perform the following key tasks. Explore the\nguides for detailed instructions and code samples for each use case.\n\n- [Add and manage products](/merchant/api/guides/products/add-manage): Learn how to add new products to your account, provide supplemental data for existing ones, and delete products you no longer sell.\n- [Make frequent updates to your\n products](/merchant/api/guides/products/frequent-updates): Discover how to make efficient, partial updates to product attributes that change often, such as price and availability.\n- [List your products data and product\n issues](/merchant/api/guides/products/list-products-data-issues): Find out how to retrieve your processed products, check their approval status for different destinations, and identify any data quality issues that may be affecting their visibility.\n\nBefore you begin\n----------------\n\nBefore using the Products sub-API, you must create at least one API data source\nin your Merchant Center account. The Products sub-API can only insert or update\nproducts in data sources of type `API`. For instructions, see the [Manage API\ndata sources for product uploads](/merchant/api/guides/data-sources/api-sources) guide."]]