lightning-delinvoice -- Command for removing an invoice (or just its description)
SYNOPSIS
delinvoice label status [desconly]
DESCRIPTION
The delinvoice RPC command removes an invoice with status as given in listinvoices, or with desconly set, removes its description.
- label (one of): Label of the invoice to be deleted.:
- (string)
- (u64)
- status (string) (one of "paid", "expired", "unpaid"): Label of the invoice to be deleted. The caller should be particularly aware of the error case caused by the status changing just before this command is invoked!
- desconly (boolean, optional): If set to True, the invoice is not deleted, but has its description removed (this can save space with very large descriptions, as would be used with lightning-invoice(7) deschashonly.
RETURN VALUE
Note: The return is the same as an object from lightning-listinvoices(7).
On success, an object is returned, containing:
- label (string): Unique label given at creation time.
- payment_hash (hash): The hash of the payment_preimage which will prove payment.
- created_index (u64): 1-based index indicating order this invoice was created in. (added v23.08)
- status (string) (one of "paid", "expired", "unpaid"): State of invoice.
- expires_at (u64): UNIX timestamp when invoice expires (or expired).
- bolt11 (string, optional): BOLT11 string.
- bolt12 (string, optional): BOLT12 string.
- amount_msat (msat, optional): The amount required to pay this invoice.
- description (string, optional): Description used in the invoice.
- updated_index (u64, optional): 1-based index indicating order this invoice was changed (only present if it has changed since creation). (added v23.08)
If bolt12 is present:
- local_offer_id (hex, optional): Offer for which this invoice was created.
- invreq_payer_note (string, optional): The optional invreq_payer_note from invoice_request which created this invoice.
If status is "paid":
- pay_index (u64): Unique index for this invoice payment.
- amount_received_msat (msat): How much was actually received.
- paid_at (u64): UNIX timestamp of when payment was received.
- payment_preimage (secret): SHA256 of this is the payment_hash offered in the invoice.
ERRORS
The following errors may be reported:
- -1: Database error.
- 905: An invoice with that label does not exist.
- 906: The invoice status does not match the parameter. An error object will be returned as error data, containing current_status and expected_status fields. This is most likely due to the status of the invoice changing just before this command is invoked.
- 908: The invoice already has no description, and desconly was set.
AUTHOR
Rusty Russell <[email protected]> is mainly responsible.
SEE ALSO
lightning-listinvoices(7), lightning-waitinvoice(7), lightning-invoice(7), lightning-autoclean-status(7)
RESOURCES
Main web site: https://github.com/ElementsProject/lightning
EXAMPLES
Example 1:
Request:
lightning-cli delinvoice -k "label"="lbl_l36" "status"="unpaid"
{
"id": "example:delinvoice#1",
"method": "delinvoice",
"params": {
"label": "lbl_l36",
"status": "unpaid"
}
}
Response:
{
"label": "lbl_l36",
"bolt11": "lnbcrt500u1pn2s3fwsp5e6nltgzk3yqn5033r6z2q32pzduys3zs5dtzc5cjs60ppcgytrsqpp5ykhhcxzcqeng2gfggmsdja3x8h0qmkl35lw9z7n99pfkg8w0s8asdqcdsenvgryv4ekxunfwp6xjmmwxqyjw5qcqp9rzjqgkjyd3q5dv6gllh77kygly9c3kfy0d9xwyjyxsq2nq3c83u5vw4jqqq0vqqqqgqqyqqqqqpqqqqqzsqqc9qxpqysgqwn7uwmy3x8u9c4ea0ka0yp3qvs0w9m7459g65kalm553vusctq8kseaph7tav4ryjfghnhu0ggjhhkrqmafarqkdsrzsk8stcvdmpmcqwfsajc",
"payment_hash": "25af7c1858066685212846e0d976263dde0ddbf1a7dc517a652853641dcf81fb",
"amount_msat": 50000000,
"status": "unpaid",
"description": "l36 description",
"expires_at": 1722908590,
"created_index": 9
}
Example 2:
Request:
lightning-cli delinvoice -k "label"="lbl_l37" "status"="paid" "desconly"=True
{
"id": "example:delinvoice#2",
"method": "delinvoice",
"params": {
"label": "lbl_l37",
"status": "paid",
"desconly": true
}
}
Response:
{
"label": "lbl_l37",
"bolt11": "lnbcrt500u1pn2s3fwsp5g96a3t3kn2we3ulrepd8eg4nw900wc324r06zlpr8py7p4zyftrspp5ggs9vzev5gcgthdysjrk0pcjgl3r5fwy4zgw6m48kk9nwx4h9slqdqcdsenwgryv4ekxunfwp6xjmmwxqyjw5qcqp9rzjqgkjyd3q5dv6gllh77kygly9c3kfy0d9xwyjyxsq2nq3c83u5vw4jqqq0vqqqqgqqyqqqqqpqqqqqzsqqc9qxpqysgqwkmgxwugmtjvf9cu324h87x5ux3cwa6glefyfxvergy3mw8gwtnzg05mrf69yz0dafk4n7u7asaxh2nx5jsylwvqttzxmr9krpc9rlsquhqkt4",
"payment_hash": "4220560b2ca23085dda4848767871247e23a25c4a890ed6ea7b58b371ab72c3e",
"amount_msat": 50000000,
"status": "paid",
"pay_index": 9,
"amount_received_msat": 50000000,
"paid_at": 1722303802,
"payment_preimage": "e876ca5ae4ed9897178b2b3a17997256ad669335eb9201e05e3c97ffb83c634b",
"expires_at": 1722908590,
"created_index": 10,
"updated_index": 9
}