2019-08-31 14:30:56 +02:00
|
|
|
lightning-listinvoices -- Command for querying invoice status
|
|
|
|
=============================================================
|
2019-08-10 01:54:18 +02:00
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
|
|
|
|
2022-01-26 18:18:49 +01:00
|
|
|
**listinvoices** [*label*] [*invstring*] [*payment_hash*] [*offer_id*]
|
2019-08-10 01:54:18 +02:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
|
|
|
|
|
|
|
The **listinvoices** RPC command gets the status of a specific invoice,
|
|
|
|
if it exists, or the status of all invoices if given no argument.
|
|
|
|
|
2021-01-05 18:58:13 +01:00
|
|
|
A specific invoice can be queried by providing either the `label`
|
|
|
|
provided when creating the invoice, the `invstring` string representing
|
2021-07-02 02:11:35 +02:00
|
|
|
the invoice, the `payment_hash` of the invoice, or the local `offer_id`
|
|
|
|
this invoice was issued for. Only one of the query parameters can be used at once.
|
2021-01-05 18:58:13 +01:00
|
|
|
|
2019-08-10 01:54:18 +02:00
|
|
|
RETURN VALUE
|
|
|
|
------------
|
|
|
|
|
2021-06-16 03:07:17 +02:00
|
|
|
[comment]: # (GENERATE-FROM-SCHEMA-START)
|
|
|
|
On success, an object containing **invoices** is returned. It is an array of objects, where each object contains:
|
|
|
|
- **label** (string): unique label supplied at invoice creation
|
2022-04-01 06:13:34 +02:00
|
|
|
- **payment_hash** (hash): the hash of the *payment_preimage* which will prove payment (always 64 characters)
|
2021-06-16 03:07:17 +02:00
|
|
|
- **status** (string): Whether it's paid, unpaid or unpayable (one of "unpaid", "paid", "expired")
|
|
|
|
- **expires_at** (u64): UNIX timestamp of when it will become / became unpayable
|
2022-03-24 00:57:28 +01:00
|
|
|
- **description** (string, optional): description used in the invoice
|
2021-06-16 03:07:17 +02:00
|
|
|
- **amount_msat** (msat, optional): the amount required to pay this invoice
|
|
|
|
- **bolt11** (string, optional): the BOLT11 string (always present unless *bolt12* is)
|
|
|
|
- **bolt12** (string, optional): the BOLT12 string (always present unless *bolt11* is)
|
2021-07-01 06:28:56 +02:00
|
|
|
- **local_offer_id** (hex, optional): the *id* of our offer which created this invoice (**experimental-offers** only). (always 64 characters)
|
2021-07-02 02:11:35 +02:00
|
|
|
- **payer_note** (string, optional): the optional *payer_note* from invoice_request which created this invoice (**experimental-offers** only).
|
2021-06-16 03:07:17 +02:00
|
|
|
|
|
|
|
If **status** is "paid":
|
|
|
|
- **pay_index** (u64): Unique incrementing index for this payment
|
|
|
|
- **amount_received_msat** (msat): the amount actually received (could be slightly greater than *amount_msat*, since clients may overpay)
|
|
|
|
- **paid_at** (u64): UNIX timestamp of when it was paid
|
2022-04-01 06:13:34 +02:00
|
|
|
- **payment_preimage** (secret): proof of payment (always 64 characters)
|
2021-09-03 12:07:59 +02:00
|
|
|
|
2021-06-16 03:07:17 +02:00
|
|
|
[comment]: # (GENERATE-FROM-SCHEMA-END)
|
2019-08-10 01:54:18 +02:00
|
|
|
|
|
|
|
AUTHOR
|
|
|
|
------
|
|
|
|
|
|
|
|
Rusty Russell <<rusty@rustcorp.com.au>> is mainly responsible.
|
|
|
|
|
|
|
|
SEE ALSO
|
|
|
|
--------
|
|
|
|
|
|
|
|
lightning-waitinvoice(7), lightning-delinvoice(7), lightning-invoice(7).
|
|
|
|
|
|
|
|
RESOURCES
|
|
|
|
---------
|
|
|
|
|
|
|
|
Main web site: <https://github.com/ElementsProject/lightning>
|
2020-08-25 03:33:16 +02:00
|
|
|
|
2022-07-13 17:45:39 +02:00
|
|
|
[comment]: # ( SHA256STAMP:7e45fcb50a446f35e441df4a6c04626a045d237407231bde044c95aabc689519)
|