1

我试图在我的 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 文档。

4

1 回答 1

1

位置 ID 是为每个卖家提供的唯一 ID,用于其注册地址和发货地址。如果您已经创建了 Flipkart 卖家账户并希望使用 Flipkart 卖家 API,您将需要您必须联系 Flipkart API 团队的位置 ID。他们将为您提供位置 ID。您可以邮寄给 Flipkart 支持团队。

于 2020-02-15T05:17:57.020 回答