HandOver Count

Flow for registered Flipkart sellers to manage orders in Easy Shipment

The get vendor details api gives number of shipments belong to particular vendor. It gives number of shipments in RTD state.

Request - v3 API

GET https://api.flipkart.net/sellers/v3/shipments/handover/counts?locationId={locationId}

Request params (v3)

Required locationId - Id which refers to seller’s dispatch location

Request Example (v3)

function getRequest(headers: BEARER_AUTH, locationId: string) {
  return fetch(`https://api.flipkart.net/sellers/v3/shipments/handover/counts?locationId=${locationId}`, {
    headers,
  .then(response => {
    // response object
  })
}

Response Body Schema (v3)

const orderDate = {
	type: 'object',
    properties: {
        from: { type: "string($date-time)" },
        to: { type: "string($date-time)" },
    },
};

const otc = {
	type: 'object',
    properties: {
        code: { type: "string" },
        error_code: { type: "string" },
    },
};

const VGC = {
	type: 'object',
    properties: {
        vendorGroupCode: { type: "string" },
        count: { type: "integer($int32)" },
        pickUpDate: orderDate,
        otc: otc,
        isMps: { type: "boolean" },
    },
};

const VendorGroupCodeDetailsResponseV3 = {
    type: "array",
    items: VGC,
}

Success Response Example (v3)

// status: 200
{
  "resultManifestDetails": [
    {
      "count": 1,
      "isMps": false,
      "pickUpDate": {
        "after": "2022-08-28T15:00:00.000+05:30",
        "before": "2022-08-28T17:00:00.000+05:30"
      },
      "vendorGroupCode": "Ekart Logistics"
    }
  ]
}

Possible Error Response Codes (v3)

Error Codes Reason for Error
DEPENDENT_SYSTEM_CALL_FAILED This error occurs if an internal system fails during get vendor details call

Edit this page on GitHub
Updated at Tue, Sep 6, 2022
Was this page helpful?