আপনি একটি স্থানীয় পণ্য ইনভেন্টরি ফিড আপলোড করে স্থানীয় পণ্য তালিকা যোগ করতে পারেন। স্থানীয় পণ্য ইনভেন্টরি ফিড আইটেমগুলির একটি তালিকা প্রদান করে যেগুলিকে বর্ণনা করার জন্য বৈশিষ্ট্য সহ দোকানে বিক্রি করা যেতে পারে৷
আপনার ইনভেন্টরি ডেটা প্রদানকারীকে বণিক কেন্দ্রে যোগ করতে, এই ফর্মে তাদের বিশদ বিবরণ দিন।
একটি জায় সন্নিবেশ করান
একটি তালিকা সন্নিবেশ করতে, নিম্নলিখিত অনুরোধ ব্যবহার করুন:
POST https://merchantapi.googleapis.com/lfp/v1beta/{parent}/lfpInventories:insert
{
"availability": "in stock",
"collectionTime": "2024-01-08T08:00:00Z",
"contentLanguage": "en",
"gtin": "gtin",
"offerId": "{offerId}",
"pickupMethod": "buy",
"pickupSla": "same day",
"price": {
"amountMicros": "1000000",
"currencyCode": "USD"
},
"regionCode": "US",
"storeCode": "{storeCode}",
"targetAccount": "{targetMerchantId}"
}
আপনি নিম্নলিখিত প্রতিক্রিয়া দেখতে আশা করতে পারেন:
{
"name": "accounts/{merchantId}/lfpInventories/{targetMerchantId}~{storeCode}~{offerId}",
"targetAccount": "{targetMerchantId}",
"storeCode": "123",
"offerId": "{offerId}",
"regionCode": "US",
"contentLanguage": "en",
"gtin": "gtin",
"price": {
"amountMicros": "1000000",
"currencyCode": "USD"
},
"availability": "in stock",
"collectionTime": "2024-01-08T08:00:00Z",
"pickupMethod": "buy",
"pickupSla": "same day",
"feedLabel": "US"
}
আরও তথ্যের জন্য, পদ্ধতি দেখুন: accounts.lfpInventories.insert ।
একটি বিক্রয় সন্নিবেশ
একটি বিক্রয় সন্নিবেশ করতে, নিম্নলিখিত অনুরোধ ব্যবহার করুন:
POST https://merchantapi.googleapis.com/lfp/v1beta/{parent}/lfpSales:insert
{
"contentLanguage": "en",
"gtin": "gtin",
"offerId": "offerId",
"price": {
"amountMicros": "1000000",
"currencyCode": "USD"
},
"quantity": 2,
"regionCode": "US",
"saleTime": "2024-01-08T08:00:00Z",
"storeCode": "123",
"targetAccount": "{targetMerchantId}"
}
আপনি নিম্নলিখিত প্রতিক্রিয়া দেখতে আশা করতে পারেন:
{
"name": "accounts/1000005718521947/lfpSales/{uuid}",
"targetAccount": "{targetMerchantId}",
"storeCode": "123",
"offerId": "offerId",
"regionCode": "US",
"contentLanguage": "en",
"gtin": "gtin",
"price": {
"amountMicros": "1000000",
"currencyCode": "USD"
},
"quantity": "2",
"saleTime": "2024-01-08T08:00:00Z",
"uid": "{uuid}",
"feedLabel": "US"
}
আরও তথ্যের জন্য, পদ্ধতি দেখুন: accounts.lfpSales.insert
একটি দোকান ঢোকান
একটি দোকান সন্নিবেশ করতে, নিম্নলিখিত অনুরোধ ব্যবহার করুন:
POST https://merchantapi.googleapis.com/lfp/v1beta/{parent}/lfpStores:insert
{
"storeAddress": "1600 Amphitheatre Pkwy, Mountain View, CA 94043, USA",
"storeCode": "{storeCode}",
"targetAccount": "{targetMerchantId}"
}
আপনি নিম্নলিখিত প্রতিক্রিয়া দেখতে আশা করতে পারেন:
{
"name": "accounts/{merchantId}/lfpStores/{targetMerchantId}~{storeCode}",
"targetAccount": "1000005718454644",
"storeCode": "{storeCode}",
"storeAddress": "1600 Amphitheatre Pkwy, Mountain View, CA 94043, USA",
"matchingState": "STORE_MATCHING_STATE_MATCHED"
}
আরও তথ্যের জন্য, পদ্ধতি দেখুন: accounts.lfpStores.insert ।