FM_APIs
  1. Shipment Tracking
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 Tracking

/ClientOrderIn/eventDetails

GET
/ClientOrderIn/eventDetails
Shipment Tracking
Retrieves event details for a shipment based on the shipment ID.

Request

Query Params
shipmentId
string 
required
The unique identifier of the shipment (Shipment Reference ID).
Example:
240905-a0e0-15b7

Request 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 GET '/ClientOrderIn/eventDetails?shipmentId'

Responses

🟢200OK
application/json
Successful response with event details of the shipment.
Body
success
boolean 
optional
Indicates if the request was successful.
Example:
true
data
array [object {3}] 
optional
Array of shipment events.
_id
string 
optional
Unique identifier of the event data.
Example:
null
eventList
array [object {3}] 
optional
List of events related to the shipment.
courierCode
string 
optional
Code of the courier partner handling the shipment.
Example:
ECOM
Example
{
    "success": true,
    "data": [
        {
            "_id": null,
            "eventList": [
                {
                    "eventTime": 1725505913387,
                    "eventType": "shipmentRegistered",
                    "eventDiscription": "Shipment Registered"
                }
            ],
            "courierCode": "ECOM"
        }
    ]
}
🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
🟠404Record Not Found
🔴500Server Error
Previous
/ClientOrderIn/orderTrackingDetails
Next
/api/shipmentTracking/{awbNumber}
Built with