OMS
//
Get Order by ID
This operation retrives the complete details of a specific order using its unique orderId.
- Retrieve all order-related information for tracking or reporting.
- Verify order contents and financials before fulfillment.
Security
bearerAuth
- Sandbox Serverhttps://api-sandbox.sendpro360.pitneybowes.com/ordermanagement/api/v1/orders/{orderId}
- Production Server (uses live data)https://api.sendpro360.pitneybowes.com/ordermanagement/api/v1/orders/{orderId}
- Sandbox Server for Canadahttps://api-ppd.shipping360.pitneybowes.com/ca/shipping/api/v1/orders/{orderId}
- Production Server for Canadahttps://api.shipping360.pitneybowes.com/ca/shipping/api/v1/orders/{orderId}
curl -i -X GET \
'https://api-sandbox.sendpro360.pitneybowes.com/ordermanagement/api/v1/orders/{orderId}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
- Order Response
- LTL Order Response
{ "orderInfo": { "orderId": "PBqTYEhO31JY", "orderNumber": "ORD123456", "status": "UNFULFILLED", "orderCreateDate": "0001-01-01T00:00:00Z", "sourceFlowType": "API", "createdBy": "0oa2hlagtvtaETd8x0h8", "customerInfo": { "firstName": "John", "lastName": "Doe", "email": "john.doe@example.com", "customerId": "CUST12345" }, "orderMessage": { "type": "GIFT", "message": "Happy Birthday! Enjoy your gift." }, "items": [ { … } ], "charges": { "currency": "USD", "billingStatus": "Paid", "gmv": 100, "subTotal": 90, "totalPaid": 100, "paymentType": "Credit Card" } }, "orderShippingInfo": { "shippingReference": { "reference1": "reference1", "reference2": "reference2", "reference3": "reference3", "reference4": "reference4", "shipperReference": "Shipper123", "transportationReference": "TransRef2025", "shippingNotes": "Handle with care" }, "shippingPreferences": { "carrier": "UPS", "parcelId": "PKG-001", "parcelType": "PKG", "service": "2DA", "parcel": { … }, "specialServices": [ … ], "customs": { … }, "shipmentProvider": { … }, "carrierPayments": [ … ], "shipmentOptions": { … } } } }