It looks like your trying to create an order- you could use [this example from our developer docs as a model](http:////%20Session is built by the OAuth process const order = new shopify.rest.Order({session: session}); order.line_items = [ { “title”: “Big Brown Bear Boots”, “price”: 74.99, “grams”: “1300”, “quantity”: 3, “tax_lines”: [ { “price”: 13.5, “rate”: 0.06, “title”: “State tax” } ] } ]; order.transactions = [ { “kind”: “sale”, “status”: “success”, “amount”: 238.47 } ]; order.total_tax = 13.5; order.currency = “EUR”; await order.save({ update: true, });), but you must ensure your app has orders access scope enabled.
Yes, I can confirm that we can successfully create an order by using these fields; it is just a problem with individual shopify stores, but we found that this shopify store may be newly registered, because it does not have an order in shopify middle. Do I need to enable any configuration in shopify?
Is the Online Store sales channel enabled? You may also need to ensure the store has payment processing enabled? If you’re testing you can use the bogus gateway.