curl --location --request PATCH 'https://api.dev.ordermesh.io/v1/orders//orderItems/' \
--header 'Content-Type: application/json' \
--data-raw '{
"id": "65aac2a2441de72442397b63",
"sku": "Apparel-Tshirt-Gildan-5000L-M-Black",
"quantity": 2,
"images": [
{
"url": "https://example.com/designs/tshirt-front-design.jpg",
"thumbnailUrl": "https://example.com/designs/tshirt-front-thumb.jpg",
"thumbnailFileId": "thumb_file_abc123",
"area": "Front",
"printMethod": "DirectToGarment",
"ourUrl": null,
"ourFileId": null,
"ourThumbnailUrl": null,
"ourThumbnailFileId": null,
"vendorReadyFileId": null
}
],
"options": [
{
"name": "Size",
"value": "Medium"
},
{
"name": "Color",
"value": "Black"
}
],
"attributes": [
{
"name": "Material",
"value": "100% Cotton"
},
{
"name": "Brand",
"value": "Gildan"
}
],
"merchantPrice": {
"amount": 19.99,
"currency": "USD"
},
"merchantShippingPrice": {
"amount": 4.99,
"currency": "USD"
},
"merchantTax": {
"amount": 1.75,
"currency": "USD"
},
"status": "Fulfilled",
"statusDesc": "Item successfully shipped to customer",
"skipImgManip": false,
"skipImageValidation": false,
"skipSkuValidation": false
}'