Ürün verileri ve satıcı kimliğinizle insert
istek
gönderin:
POST https://shoppingcontent.googleapis.com/content/v2.1/merchantId/products
HTTP 200 durum kodu aldığınızı doğrulayın.
Ürün görüntüleme
Satıcı kimliğiniz ve ürünün get
isteğiproductId ile birlikte bir istek gönderin:
GET https://shoppingcontent.googleapis.com/content/v2.1/merchantId/products/productId
HTTP 200 durum kodunu ve ürünün JSON verilerini aldığınızı doğrulayın.
Ürünü güncelleme
Bir ürün için yeni JSON'u oluşturun. Örneğin, insert çağrısını test etmek için kullandığınız ürünün JSON'undaki availability: in stock alanını availability: out of stock olarak değiştirin.
Yeni ürün verileri ve satıcı kimliğinizle insert
istek
gönderin:
POST https://shoppingcontent.googleapis.com/content/v2.1/merchantId/products
HTTP 200 durum kodu aldığınızı doğrulayın. En az beş dakika sonra, güncellenen değerin (get) uygulandığını onaylamak için başka bir availability: out of stock isteğinde bulunabilirsiniz.
[[["Anlaması kolay","easyToUnderstand","thumb-up"],["Sorunumu çözdü","solvedMyProblem","thumb-up"],["Diğer","otherUp","thumb-up"]],[["İhtiyacım olan bilgiler yok","missingTheInformationINeed","thumb-down"],["Çok karmaşık / çok fazla adım var","tooComplicatedTooManySteps","thumb-down"],["Güncel değil","outOfDate","thumb-down"],["Çeviri sorunu","translationIssue","thumb-down"],["Örnek veya kod sorunu","samplesCodeIssue","thumb-down"],["Diğer","otherDown","thumb-down"]],["Son güncelleme tarihi: 2026-07-06 UTC."],[],["To add a product, create valid JSON for it, then send an `insert` request via POST with the data and merchant ID, expecting an `HTTP 200` response. To view, send a `get` request via GET with the merchant ID and product ID, confirming an `HTTP 200` status and the JSON. To update, create new JSON, make an `insert` POST request, and verify `HTTP 200` then check with `get`. To delete, send a `delete` request via DELETE with the ID, verifying an `HTTP 204` status.\n"]]