FM_APIs
  1. Shipment Processing
FM_APIs
  • Shipment Order
    • /shipmentorder
      POST
  • Shipment Processing
    • /RTS/markRTS
      POST
    • /shipmentDetails/labelLink
      POST
    • /RTS/bulkMarkRTS
      POST
    • /ShipmentCancellation/markCancellation
      POST
    • /orderProcessing/printLabel
      POST
    • /orderProcessing/printInvoice
      POST
    • /orderProcessing/searchOrders
      POST
  • Shipment Tracking
    • /ClientOrderIn/orderTrackingDetails
      GET
    • /ClientOrderIn/eventDetails
      GET
    • /api/shipmentTracking/{awbNumber}
      GET
  1. Shipment Processing

/orderProcessing/searchOrders

POST
/orderProcessing/searchOrders
The API allows search orders

Request

Body Params application/json

Example
{
    "dateFrom": 1724956200000,
    "dateTo": 1725647399999,
    "status": 100,
    "identificationParameter": "",
    "consignorGroupCode": "CN-LKO001",
    "consignorLocationCode": "",
    "direction": "forward",
    "pageNo": 1,
    "rowCount": 50
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/orderProcessing/searchOrders' \
--header 'Content-Type: application/json' \
--data-raw '{
    "dateFrom": 1724956200000,
    "dateTo": 1725647399999,
    "status": 100,
    "identificationParameter": "",
    "consignorGroupCode": "CN-LKO001",
    "consignorLocationCode": "",
    "direction": "forward",
    "pageNo": 1,
    "rowCount": 50
}'

Responses

🟢200OK
application/json
Message indicating the result of the order search.
Body

Example
{
    "msg": "Order Data Received!!",
    "status": 200,
    "data": [
        {
            "clientRefId": "c2e55c72f2fc4849befbd20392e169f2",
            "orderID": "2024090508965958, 2024090508757007",
            "orderChannel": "Manual",
            "courierPartner": "ECOM",
            "createdDate": 1725505875991,
            "orderStatus": 1000,
            "pickupReferenceNumber": "240905-a0e0-15b7",
            "courierAWBNumber": "715430528",
            "shipmentValue": 3291.8,
            "rtsDate": null,
            "estimatednextPickupAttemptDate": null,
            "cancellationStatus": 2,
            "consignorLocation": "CN-LKO001-1",
            "paymentMode": "COD",
            "serviceType": "ECONOMY",
            "pickupAddress": "Uttam Nagar, Prayagraj, Lucknow, Uttar Pradesh, 226001"
        }
    ]
}
🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
🟠404Record Not Found
🔴500Server Error
Modified at 2024-12-02 04:13:42
Previous
/orderProcessing/printInvoice
Next
/ClientOrderIn/orderTrackingDetails
Built with