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

/RTS/bulkMarkRTS

POST
/RTS/bulkMarkRTS
Shipment Processing
The API allows marking multiple shipment as ready to ship.

Request

Body Params application/json
data
array[string]
optional
array of shipment identifier.
rtsTime
integer 
optional
The timestamp when the shipment is marked RTS.
Example
{
    "data": [
        "13456849"
    ],
    "rtsTime": 1696504285240
}

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 POST '/RTS/bulkMarkRTS' \
--header 'Content-Type: application/json' \
--data-raw '{
    "data": [
        "13456849"
    ],
    "rtsTime": 1696504285240
}'

Responses

🟢200OK
application/json
Response for RTS details update.
Body
optional
One of
Success response indicating RTS details were updated successfully.
msg
string 
optional
Example:
RTS details updated successfully
status
boolean 
optional
Example:
true
statusCode
integer 
optional
Example:
1004
Example
{
    "msg": "RTS details updated successfully",
    "status": true,
    "statusCode": 1004
}
🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
🟠404Record Not Found
🔴500Server Error
Previous
/shipmentDetails/labelLink
Next
/ShipmentCancellation/markCancellation
Built with