We are doing the following call using POSTMAN on one of our development sites:
POST https://xxx/admin/api/2023-04/fulfillments.json
JSON Body:
{
“fulfillment”: {
“tracking_info”: {
“number”: “398760110772”,
“url”: “”,
“company”: “”
},
“line_items_by_fulfillment_order”: [{
“fulfillment_order_id”: “6366829674751”
} ]
}
}
We’re getting back a status of 200 (OK) but the order is not fulfilled and here is the response body:
<a
I cannot determine what is different on the development site vs production because I can do the same call on a production site and the order is fulfilled correctly.
Any help would be appreciated.