Our API is currently in open beta, if you encounter any issues or have a suggestion, please email us at devs@lumaprints.com. Your insights are invaluable to us.
username:password
Authorization: Basic *****************
curl --location --request GET 'https://us.api-sandbox.lumaprints.com/api/v1/orders?storeId=1000&page=1&orderDateStart=2023-09-01&orderDateEnd=2023-09-30' \
--header 'Authorization: Basic Og=='
{
"orders": [
{
"orderNumber": "10000000001",
"externalId": "186898732",
"storeId": "818",
"orderDate": "2023-08-30T10:19:20.000Z",
"shippingMethod": "default",
"productionTime": "regular",
"discountTotal": 5.99,
"shippingTotal": 11.99,
"taxTotal": 1.29,
"subTotal": 29.99,
"orderTotal": 37.28,
"orderStatus": "Awaiting Fulfillment",
"recipient": {
"firstName": "John",
"lastName": "Smith",
"addressLine1": "123 Main St.",
"addressLine2": "Apt. 123",
"city": "New York",
"state": "NY",
"zipCode": "10001",
"country": "US",
"phone": "123-456-7890",
"company": "ABC Company"
},
"orderItems": [
{
"subcategoryId": 101001,
"width": 8,
"height": 10,
"file": {
"imageUrl": "https://www.example.com/image.jpg"
},
"itemCostTotal": 29.99,
"orderItemOptions": [
{
"optionId": 1,
"optionName": "Image Wrap"
},
{
"optionId": 4,
"optionName": "Sawtooth Hanger installed"
},
{
"optionId": 9,
"optionName": "None"
}
]
}
]
}
],
"totalOrders": 1,
"currentPage": 1,
"totalPages": 1
}