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/printLabel

POST
/orderProcessing/printLabel
Shipment Processing
The API allows generating labels of shipments

Request

Body Params application/json
shipmentIDs
array[string]
optional
array of shipment identifier(Shipment Reference ID).
Example
{
    "data": [
        "13456849"
    ]
}

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 '/orderProcessing/printLabel' \
--header 'Content-Type: application/json' \
--data-raw '{
    "data": [
        "13456849"
    ]
}'

Responses

🟢200OK
application/json
Successful response indicating Label is generated.
Body
status
integer 
optional
Example:
200
msg
string 
optional
Example:
Label generated successfully!!
buffer
object 
optional
type
string 
optional
Example:
Buffer
data
array[integer]
optional
invalidShipmentIds
array[string]
optional
Array of invalid shipment IDs.
Example
{
    "status": 200,
    "msg": "Label generated successfully!!",
    "buffer": {
        "type": "Buffer",
        "data": [
            "..."
        ]
    },
    "invalidShipmentIds": []
}
🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
🟠404Record Not Found
🔴500Server Error
Previous
/ShipmentCancellation/markCancellation
Next
/orderProcessing/printInvoice
Built with