I want to access API https://seller.flipkart.com/api-docs/listing-api-docs/LMAPIRef.html of this WEBSITE I have already generated token but latter I want Access its LIST of products which I upload on flipkart
Flipkart API documents given billow URL
Example 1 - Create Listing
Success: HTTP code 2xx Seller API of flipkart to access the list of Product using this link Request: https://api.flipkart.net/sellers/skus/SKUID/listings
{
    "skuId": "SKUID",
    "fsn": "FSN",
    "attributeValues": {
        "mrp": "2400",
        "selling_price": "2300",
        "listing_status": "INACTIVE",
        "fulfilled_by": "seller",
        "national_shipping_charge": "20",
        "zonal_shipping_charge": "20",
        "local_shipping_charge": "20",
        "procurement_sla": "3",
        "stock_count": "23"
    }
}
Response:
{
    "status": "success",
    "response": {
        "skuId": "SKUID",
        "listingId": "LISTINGID",
        "status": "created",
        "errors": []
    }
}