curl --request PATCH \
--url https://prod01.oms.fabric.inc/api/v2/order/{orderId}/customer \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'x-site-context: <x-site-context>' \
--data '{
"name": {
"first": "John",
"middle": "Middle",
"last": "Doe"
},
"email": "[email protected]",
"phone": {
"number": "55555555555",
"type": "MOBILE"
},
"userId": "62272e917b12209e68751d94",
"accountId": "62272e917b12209e68751d94",
"employeeId": "62272e917b12209e68751d94",
"company": "fabric"
}'