get http://staging-apigateway.snapdeal.com/seller-api/orders/new
This API will be used to get the orders in Pending for fulfilment (PFF) & Print (PRNT) state in descending order of created time. API also provides the filter to get the orders based on the order status(PFF or PRNT).
If the buyer has ordered multiple quantities of a product then each quantity will be treated as one single item(subOrder) and those number of items will be returned under that package.
Note
Allowed fulfillment modes are VENDOR_SELF,ONESHIP,OCPLUS,DROPSHIP,FC_VOI.
Default pageSize=10
Default pageNumber=1
Allowed orderStatus values are PFF,PRNT
Default orderStatus = PFF,PRNT
Request
ParameterName | DataType | ParameterType | Requirement | Description |
---|---|---|---|---|
fModes | String | Query | Mandatory | Comma separated fulfilment modes |
orderStatus | String | Query | Optional | Any One of order status values |
pageSize | int | Query | Optional | pageNumber used for pagination |
pageNumber | int | Query | Optional | pageSize used for pagination |
Response
metadata :
FieldName | DataType | Description |
---|---|---|
requestId | String | Unique ID for the request |
clientId | String | Partner Id |
responseTime | Long | Response Time |
requestedURI | String | Requested URI |
message | String | Error message |
payload :
FieldName | DataType | Description |
---|---|---|
packages | List | packages |
SellerPackage :
FieldName | DataType | Description |
---|---|---|
packageReferenceCode | String | packageReferenceCode |
fulfillmentModelCode | String | fulfillmentModelCode |
awbNo | String | awbNo (For PRNT suborders) |
courierCode | String | courierCode |
manifestByDate | Date | manifestByDate |
manifestCode | String | manifestCode |
shippedDate | Date | shippedDate |
slaBreach | String | It can have 2 values SLA_BREACHED/SLA_BREACH_TODAY depending upon whether the shipment SLA is already breached / about to breach |
items | List | items |
stateFormRequired | boolean | whether state form is required for a package or not. Calculated based on whether there exists any state form for the destination state and the total price of package. |
updated | Date | updated Date |
created | Date | created Date |
invoiceNumber | String | invoiceNumber |
courierName | String | courierName |
courierDetails | Map<String, String> | courierDetails |
centreCode | String | centreCode is for ONESHIP and OCPLUS |
packagingTypeDTO | PackagingInfoDTO | Packaging recomendation details |
SellerItem :
FieldName | DataType | Description |
---|---|---|
suborderCode | String | suborderCode |
orderDate | Date | orderDate |
productName | String | productName |
serializable | String | serializable |
serializedUniqueId | String | serializedUniqueId |
attributes | String | attributes |
imageUrl | String | imageUrl |
freebies | String | freebies offered by snapdeal with a particular suborder |
incentive | Boolean | whether a seller is eligible for incentive based on the time he took to ship a package. |
price | Integer | price |
mrp | Integer | mrp |
siStatusCode | String | siStatusCode |
updated | Date | updated |
paymentMode | String | paymentMode (Standard/Cash on delivery) |
supc | String | supc |
fulfillmentModelCode | String | fulfillmentModelCode |
skuCode | String | skuCode |
siReferenceCode | String | siReferenceCode |
customerName | String | customerName |
customerDetail | ShippingDetail | customerDetail |
deliveryMode | String | next day / same day/ instant/ normal delivery |
orderCode | String | Buyer orderCode |
packageReferenceCode | String | packageReferenceCode |
ShippingDetail :
FieldName | DataType | Description |
---|---|---|
pincode | String | pincode |
city | String | city |
area | String | area |
subArea | String | subArea |
state | String | state |
mobile | String | mobile number |
String |
packagingTypeDTO:
FieldName | DataType | Description |
---|---|---|
packagingMode | String | |
packagingType | String | |
packagingDetail | PackagingDetailDTO | |
additionPackagingDetails | List | |
itemLevelPackagingDetails | List | Supc Level packaging details |
PackagingDetail
FieldName | DataType |
---|---|
code | String |
description | String |
ItemLevelPackagingDetails
FieldName | DataType |
---|---|
supc | String |
code | String |
Description | String |
Responses