Search shipments using filters
POST /sellers/v3/shipments/filter
This operation returns shipments based on applied filters
- */*
Request Body
filter object
type string requiredPossible values: [
preDispatch
,postDispatch
,cancelled
]states string[]Possible values: [
APPROVED
,PACKING_IN_PROGRESS
,FORM_FAILED
,PACKED
,READY_TO_DISPATCH
,PICKUP_COMPLETE
,CANCELLED
,RETURN_REQUESTED
,RETURNED
,SHIPPED
,DELIVERED
,COMPLETED
]locationId stringsku string[]orderDate object
from date-timeto date-timedispatchAfterDate object
from date-timeto date-timedispatchByDate object
from date-timeto date-timemodifiedDate object
from date-timeto date-timeshipmentTypes string[]Possible values: [
EXPRESS
,NORMAL
,SELF
]serviceProfiles string[]Possible values: [
FBF
,NON_FBF
,FBF_LITE
]dispatchServiceTiers string[]Possible values: [
EXPRESS
,REGULAR
]cancellationDate object
from date-timeto date-timecancellationType stringPossible values: [
sellerCancellation
,buyerCancellation
,marketplaceCancellation
]pagination object
pageSize int32sort object
field stringPossible values: [
dispatchByDate
,orderDate
,modifiedDate
,dispatchAfterDate
]order stringPossible values: [
asc
,desc
]- sellerId string
- 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.627Z",
"dispatchAfterDate": "2025-01-29T05:32:53.627Z",
"updatedAt": "2025-01-29T05:32:53.627Z",
"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.627Z",
"cancellationDate": "2025-01-29T05:32:53.627Z",
"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"
}
]
}