I’m trying to create a fulfillment in Shopify using the following request:
POST https://{{mystore_url}}/admin/api/2025-01/fulfillments.json
Request Body:
{
“fulfillment”: {
“line_items_by_fulfillment_order”: [
{
“fulfillment_order_id”: xxxxxxxxxxxxxxx (fulfillment_order_id)
}
],
“tracking_info”: {
“number”: “28691077xxx”,
“url”: “https://www.dhl.com/pl-pl/home/tracking/tracking-parcel.html?submit=1&tracking-id=28691077xxx”
}
}
}
However, I receive the following response:
{
“errors”: “Not Found”
}
My app has access to all fulfillment permissions
How can I fix the “Not Found” error?