curl --request GET \
--url https://api.example.com/api/v1/Orders/{orderNumber} \
--header 'Authorization: <api-key>'{
"isSuccess": true,
"message": "<string>",
"payload": {
"accountNumber": "<string>",
"supplierName": "<string>",
"warehouseName": "<string>",
"warehouseCode": "<string>",
"wineDirectOrderNumber": "<string>",
"orderNumber": "<string>",
"orderTypeName": "<string>",
"orderTypeCode": "<string>",
"batchNumber": "<string>",
"orderedDate": "2023-11-07T05:31:56Z",
"requestedDate": "2023-11-07T05:31:56Z",
"shipmentCount": 123,
"returnCount": 123,
"holdCount": 123,
"firstShippedDate": "2023-11-07T05:31:56Z",
"lastShippedDate": "2023-11-07T05:31:56Z",
"statusCode": "<string>",
"statusName": "<string>",
"firstHoldName": "<string>",
"carrierName": "<string>",
"notificationEmail": "<string>",
"shipToFirstName": "<string>",
"shipToLastName": "<string>",
"shipToCity": "<string>",
"shipToStateCode": "<string>",
"shipToPostalCode": "<string>",
"shipToCompanyName": "<string>",
"packagingTypeCode": "<string>",
"packagingTypeName": "<string>"
}
}Use the GET /Orders/Detail endpoint for a full detailed order
curl --request GET \
--url https://api.example.com/api/v1/Orders/{orderNumber} \
--header 'Authorization: <api-key>'{
"isSuccess": true,
"message": "<string>",
"payload": {
"accountNumber": "<string>",
"supplierName": "<string>",
"warehouseName": "<string>",
"warehouseCode": "<string>",
"wineDirectOrderNumber": "<string>",
"orderNumber": "<string>",
"orderTypeName": "<string>",
"orderTypeCode": "<string>",
"batchNumber": "<string>",
"orderedDate": "2023-11-07T05:31:56Z",
"requestedDate": "2023-11-07T05:31:56Z",
"shipmentCount": 123,
"returnCount": 123,
"holdCount": 123,
"firstShippedDate": "2023-11-07T05:31:56Z",
"lastShippedDate": "2023-11-07T05:31:56Z",
"statusCode": "<string>",
"statusName": "<string>",
"firstHoldName": "<string>",
"carrierName": "<string>",
"notificationEmail": "<string>",
"shipToFirstName": "<string>",
"shipToLastName": "<string>",
"shipToCity": "<string>",
"shipToStateCode": "<string>",
"shipToPostalCode": "<string>",
"shipToCompanyName": "<string>",
"packagingTypeCode": "<string>",
"packagingTypeName": "<string>"
}
}Enter the Bearer AccessToken; Example: 'Bearer 12345abcdef'
Either Order Number or WineDirect Order Number
OK
Was this page helpful?