When I send the fulfillments API without entering the tracking_info field and then send the same api again after entering the tracking_info field
It says, “Fulfillment order 6097444962362 has an unfulfillable status= closed.” How can I send tracking_info?
first send
RestAPI : https://d838a7-2.myshopify.com/admin/api/2023-07/fulfillments.json
{
"fulfillment": {
"line_items_by_fulfillment_order": [
{
"fulfillment_order_id": 6097444962362
}
]
}
}
second send
RestAPI : https://d838a7-2.myshopify.com/admin/api/2023-07/fulfillments.json
{
"fulfillment": {
"line_items_by_fulfillment_order": [
{
"fulfillment_order_id": 6097444962362
}
],
"tracking_info": {
"number": "MS1562678",
"url": "https://www.my-shipping-company.com?tracking_number=MS1562678"
}
}
}
response
{
"errors": [
"Fulfillment order 6097444962362 has an unfulfillable status= closed."
]
}