Interacting with Invoice
When working with the store, you had a chance to get the invoice. Here you'll learn what you can do with it.
Edit an invoice
To edit your invoice, just call the edit() on the invoice object like so:
After confirming the transaction, the invoice will be updated in a couple of seconds. Note that this operation requires you to provide functional sender to the SDK.
Warning! Only the merchant can edit the invoice!
Manage active status
To activate or deactivate your invoice, call the respective methods like so:
After confirming the transaction, the invoice will be activated/deactivated.
Warning! Only the merchant can activate or deactivate the invoice!
Paying the invoice
After the invoice is issued, the customer needs to pay for it. This can be handled in 2 ways:
providing customer with the payment link (not the same one as for the store!)
send a payment to the invoice programmatically
The easiest way is to provide a payment link like so:
After retrieving the link, you can present it to your customer in any way you want (button, QR code, etc.)
If the invoice's currency is other than TON, then you must specify the customer wallet address:
And that's it! When the user confirms the transaction, consider your invoice paid (assuming all data is correct).
You can check the payment status easily by calling invoice.isPaid()
method!
Get invoice info
If you want to fetch the data about your invoice, you can use a set of methods for that:
It's recommended to just use the getData()
to save up on requests.
Last updated
Was this helpful?