Creating new orders with Python API, get AttributeError: 'str' object has no attribute 'iteritems' – Shopify
The code I have that's causing this is new_order = shopify.Order.create(json.dumps({'order': { "email": "[email protected]", "fulfillment_status": "fulfilled", "line_items": [{'message': "words go here"}]}})) I tried without the json.dumps and got the response that it was an unhashable type. also tried this from…