Get Order Details
Obtain the details for a specific order
The endpoint retrieves detailed information about a specific order, including order ID, customer details, product info, shipping, and order tracking.
get
Authorizations
Path parameters
orderIdstringRequired
OrderID is a unique identifier for an order. It is a string that is provide by partner and is unique for each order of given partner.
Responses
200
Successfully retrieved the order details
application/json
404
Order not found
application/json
500
Internal server error
application/json
get
GET /v1/orders/{orderId} HTTP/1.1
Host:
Authorization: Bearer JWT
Accept: */*
{
"orderId": "text",
"status": "NEW",
"items": [
{
"id": "text",
"quantity": 1,
"unitPrice": 1,
"existingProduct": {
"ean13": "text",
"name": "text"
},
"customProduct": {
"sku": "text",
"prints": [
{
"dataUrl": "text",
"location": "text",
"technology": "text",
"qualityControlImageUrl": "text"
}
],
"customizations": [
{
"sku": "text",
"location": "text",
"technology": "text",
"qualityControlImageUrl": "text"
}
],
"qualityControlImageUrl": "text"
}
}
],
"shipping": {
"address": {
"personName": "text",
"street": "text",
"addressLine2": "text",
"city": "text",
"postalCode": "text",
"country": "text",
"state": "text",
"phoneNumber": "text",
"email": "text",
"company": "text"
},
"carrierId": "text",
"shippingLabelUrl": "text",
"returnLabelUrl": "text",
"trackingNumber": "text",
"trackingCarrier": "text",
"trackingUrl": "text"
},
"packingSlip": "text",
"unitPriceCurrency": "text",
"created": "2025-09-04T02:21:29.928Z",
"updated": "2025-09-04T02:21:29.928Z"
}
Last updated