Covers all questions related to inventory management, order fulfillment, and shipping.
Hi,
I am getting the following error hen I try to fulfill an order.
'X-Request-ID': '9a2de63d-8796-4214-ad55-d69c4e71d777',
Solved! Go to the solution
This is an accepted solution.
I just found the issue. I was sending the data as text but not JSON.
After using the following code, it worked.
data_json = json.dumps(my_json)
This is an accepted solution.
I just found the issue. I was sending the data as text but not JSON.
After using the following code, it worked.
data_json = json.dumps(my_json)