OMS
//
Search Orders by OrderID
This operation returns a list of orders that match the provided search criteria.
Security
bearerAuth
Searches for orders based on the provided filter criteria. Use this request to retrieve one or more orders by orderId.
- Sandbox Serverhttps://api-sandbox.sendpro360.pitneybowes.com/ordermanagement/api/v1/orders/search
- Production Server (uses live data)https://api.sendpro360.pitneybowes.com/ordermanagement/api/v1/orders/search
- Sandbox Server for Canadahttps://api-ppd.shipping360.pitneybowes.com/ca/shipping/api/v1/orders/search
- Production Server for Canadahttps://api.shipping360.pitneybowes.com/ca/shipping/api/v1/orders/search
curl -i -X POST \
https://api-sandbox.sendpro360.pitneybowes.com/ordermanagement/api/v1/orders/search \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"filters": [
{
"name": "orderId",
"value": [
"PBqTYEhO31JY"
]
}
],
"page": 0,
"size": 0
}'Response
- FedEx Carrier Payment
- UPS Carrier Payment
- DHL Express Carrier Payment
- Purolator Carrier Payment
{ "orders": [ { "orderInfo": { … }, "orderShippingInfo": { … } } ], "pageInfo": { "total": 28, "pages": 3, "page": 1 } }