我试图在我的 Flipkart 沙盒帐户中上传一个需要有效负载作为输入的列表。我无法弄清楚我的位置 ID 是什么,或者我可以从我的 Flipkart 仪表板中获得它。这是我的 JSON 有效负载:
{
"<sku>": {
"product_id": "<product-id>",
"price": {
"mrp": 0,
"selling_price": 0,
"currency": "INR"
},
"tax": {
"hsn": "<harmonized-system-nomenclature>",
"tax_code" : "<tax-code to determine goods>"
},
"listing_status": "ACTIVE|INACTIVE",
"shipping_fees": {
"local": 0,
"zonal": 0,
"national": 0,
"currency": "INR"
},
"fulfillment_profile": "NON_FBF|FBF_LITE|FBF",
"fulfillment": {
"dispatch_sla": 1,
"shipping_provider": "FLIPKART|SELLER|FLIPKART_SELLER",
"procurement_type": "REGULAR|EXPRESS|INTERNATIONAL|MADE_TO_ORDER|DOMESTIC"
},
"packages": [
{
"name": "<package-identifier>",
"dimensions": {
"length": 1,
"breadth": 1,
"height": 1
},
"weight": 1,
"description": "",
"handling": {
"fragile": true
},
"notional_value": {
"amount": 1,
"unit": "PERCENTAGE|<CURRENCY>"
}
}
],
"locations": [
{
"id": "<location-id>",
"status": "ENABLED|DISABLED",
"inventory": 0
}
],
"address_label": {
"manufacturer_details": [
"<address_of_manufacturer>"
],
"importer_details": [
"<address_of_importer>"
],
"packer_details": [
"<address_of_packer>"
],
"countries_of_origin": [
"<iso_alpha2_code_of_country_of_origin>"
]
},
"dating_label": {
"mfg_date": "<Manufacturing date of the product in linux EPOCH (Seconds)>",
"shelf_life": "<Shelf life of the product in Seconds>"
}
}
}
这是他们需要的输入。 https://seller.flipkart.com/api-docs/listing-api-docs/LMAPIRef.html。您可以使用此 Flipkart 文档。