Currently, I am implementing a functionality that allows me to update the tracking of the fullfillments of an order, for this I am using the following resource:
/admin/api/2023-10/fulfillments/1022782905/update_tracking.json
Indicated in the documentation, but I always get the following error:
{
“errors”: “Not Found”
}
In postman it returns me a status code 404.
These are all the permissions I have been working with:
- “read_orders”
- “write_orders”
- “read_products”,
- “read_shipping”
- “read_fulfillments”
- “write_fulfillments”
- “read_assigned_fulfillment_orders”
- “write_assigned_fulfillment_orders”
- “read_merchant_managed_fulfillment_orders”
- “write_merchant_managed_fulfillment_orders”
- “read_third_party_fulfillment_orders”
- “write_third_party_fulfillment_orders”
I would be grateful if you could indicate me where I am going wrong.
Thanks