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

/shipmentDetails/labelLink

POST
/shipmentDetails/labelLink
Shipment Processing
Generate shipment label link

Request

Query Params
identificationParameter
string 
required
The unique shipment ID to generate the label link for.
Example:
12345-abcde-67890

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 '/shipmentDetails/labelLink?identificationParameter'

Responses

🟢200OK
application/json
Label link generated successfully
Body
status
integer 
optional
HTTP status code of the response
Example:
200
msg
string 
optional
Response message indicating success
Example:
Label link generated successfully!!
data
string <uri>
optional
The signed URL of the generated label
Example:
https://example.com/signed-url-to-label.pdf
Example
{
    "status": 200,
    "msg": "Label link generated successfully!!",
    "data": "https://example.com/signed-url-to-label.pdf"
}
🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
🟠404Record Not Found
🔴500Server Error
Previous
/RTS/markRTS
Next
/RTS/bulkMarkRTS
Built with