I am trying to create a process to create an invoice and show it.
Thus far, I have been able to do everything in the process except publishing the invoice, wherein I get an error of “Invoice total must be between $1.00 and $50,000.00”.
I have already set the current total of it to $99 dollars per a previous question that I asked here. I hope someone can tell me where i’m going wrong. Thanks. I will provide more information if necessary.
I put it as 99 * 100, because from another thread, someone told me that the denomination they are using is cents, not dollars. So I just multiplied it by 100.
It’s the application ID that you created in your Developer Dashboard. Also I checked your API Logs and the order that you created the invoice with is a $0 order. You’ll need to create a new order for an amount greater then $1.00 and then create and publish the invoice.
You’ll need to create a new order for an amount greater then $1.00 and then create and publish the invoice.
Just to clarify, this necessarily means that I did not create an order worth more than $1, despite the fact that I set the total of one item to $99, is that correct?
The application ID is sandbox-sq0idb-AL-WY9miwx2OIzZA3yDkPg
I guess what i’m trying to say is, i’m still not sure where specifically to set the order of the total for it to actually reflect in the order. I’m adding the total in the line items, but it’s not reflecting in the final total of the order. I can’t put it in the total of the order since it’s read only.
I am still having a problem with setting the right order amount though. What is the specific attribute, in either the order submission or the invoice submission, that will make the amount be $99? Because I tried it with the setting the amount + quantity for line orders and it didn’t work. I don’t think the orders are computing what’s supposed to be the invoice total properly.