Search shipments using filters
GET /sellers/v3/shipments/filter
This operation should be used if hasMore
is true in the response of POST /v3/shipments/filter
API, so that the client can fetch the next set of shipment which qualify the earlier defined filter criteria. User need not build this URL by themselves, just use the URL returned as nextPageUrl
in the response of POST /v3/shipments/filter
or GET /v3/shipments/filter
.
Query Parameters
- next_token string
Responses
- 200
successful operation
- application/json
- Schema
- Example (from schema)
Schema
- hasMore boolean
- nextPageUrl string
shipments object[]
Array [shipmentId stringdispatchByDate date-timedispatchAfterDate date-timeupdatedAt date-timelocationId stringhold booleanmps booleanpackagingPolicy stringsubShipments object[]
Array [subShipmentId stringpackages object[]
Array [id stringname string requireddimensions object
length number requiredbreadth number requiredheight number requiredweight numbernotional_value object
amount number requiredunit string requiredPossible values: [
PERCENTAGE
,INR
]description stringhandling object
fragile boolean required]]orderItems object[]
Array [orderItemId stringorderId stringcancellationGroupId stringorderDate date-timecancellationDate date-timepaymentType stringPossible values: [
COD
,PREPAID
]status stringPossible values: [
APPROVED
,PACKING_IN_PROGRESS
,FORM_FAILED
,PACKED
,READY_TO_DISPATCH
,PICKUP_COMPLETE
,CANCELLED
,RETURN_REQUESTED
,RETURNED
,SHIPPED
,DELIVERED
,COMPLETED
]cancellationReason stringcancellationSubReason stringcourierReturn booleanquantity int32fsn stringsku stringlistingId stringhsn stringtitle stringpackageIds string[]priceComponents object
sellingPrice numbertotalPrice numbershippingCharge numbercustomerPrice numberflipkartDiscount numberserviceProfile stringPossible values: [
Flipkart_Fulfilment
,Seller_Fulfilment
,Smart_Fulfilment
,FBF
,NON_FBF
,FBF_LITE
]is_replacement boolean]forms object[]
Array [name stringlink stringautomated boolean]shipmentType string]
{
"hasMore": true,
"nextPageUrl": "string",
"shipments": [
{
"shipmentId": "string",
"dispatchByDate": "2025-01-29T05:32:53.623Z",
"dispatchAfterDate": "2025-01-29T05:32:53.623Z",
"updatedAt": "2025-01-29T05:32:53.624Z",
"locationId": "string",
"hold": true,
"mps": true,
"packagingPolicy": "string",
"subShipments": [
{
"subShipmentId": "string",
"packages": [
{
"notional_value": {
"amount": 0.7386281948385884,
"unit": "PERCENTAGE"
},
"name": "name",
"weight": 4.145608029883936,
"description": "description",
"handling": {
"fragile": true
},
"id": "id",
"dimensions": {
"breadth": 3.616076749251911,
"length": 9.301444243932576,
"height": 2.027123023002322
}
}
]
}
],
"orderItems": [
{
"orderItemId": "string",
"orderId": "string",
"cancellationGroupId": "string",
"orderDate": "2025-01-29T05:32:53.624Z",
"cancellationDate": "2025-01-29T05:32:53.624Z",
"paymentType": "COD",
"status": "APPROVED",
"cancellationReason": "string",
"cancellationSubReason": "string",
"courierReturn": true,
"quantity": 0,
"fsn": "string",
"sku": "string",
"listingId": "string",
"hsn": "string",
"title": "string",
"packageIds": [
"string"
],
"priceComponents": {
"sellingPrice": 0,
"totalPrice": 0,
"shippingCharge": 0,
"customerPrice": 0,
"flipkartDiscount": 0
},
"serviceProfile": "Flipkart_Fulfilment",
"is_replacement": true
}
],
"forms": [
{
"name": "string",
"link": "string",
"automated": true
}
],
"shipmentType": "string"
}
]
}
Loading...