curl --request PATCH \
--url https://prod01.copilot.fabric.inc/data-subscription/v1/orders/{orderId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"order": {
"scheduledDate": "2019-01-01T00:00:00.000Z",
"status": "SCHEDULED",
"lineItems": [
{
"Item": {
"quantity": 1,
"weight": 10,
"weightUnit": "lb"
},
"customAttributes": {
"storeId": "60cb07fc20387b000821c5c3",
"associateId": 1,
"trackingUrl": "609436d21baded0008945b05"
}
}
]
}
}
'