We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am getting this error when attempting to create an order
"order placement": [ "Order GUID is not generated" ]
I have looked through the code for API and this error is not generated in that project.
I attempted this and it didnt work either
[JsonProperty("order_guid")] public Guid OrderGuid { get; set; }
This is the section in the CreateOrder Endpoint where the error is generated
var placeOrderResult = PlaceOrder(newOrder, customer); if (!placeOrderResult.Success) { foreach (var error in placeOrderResult.Errors) { ModelState.AddModelError("order placement", error); } return Error(HttpStatusCode.BadRequest); }
Seems like the error is being thrown in the nopCommerce not the API
Can I get some help around this?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am getting this error when attempting to create an order
I have looked through the code for API and this error is not generated in that project.
I attempted this and it didnt work either
This is the section in the CreateOrder Endpoint where the error is generated
Seems like the error is being thrown in the nopCommerce not the API
Can I get some help around this?
The text was updated successfully, but these errors were encountered: