lightning-listinvoicerequests -- Command for querying invoice_request status
SYNOPSIS
listinvoicerequests [invreq_id] [active_only]
DESCRIPTION
Command added in v22.11.
The listinvoicerequests RPC command gets the status of a specific invoice_request
, if it exists, or the status of all invoice_requests
if given no argument.
- invreq_id (string, optional): A specific invoice can be queried by providing the
invreq_id
, which is presented by lightning-invoicerequest(7), or can be calculated from a bolt12 invoice. - active_only (boolean, optional): If it is True then only active invoice requests are returned. The default is False.
RETURN VALUE
On success, an object containing invoicerequests is returned. It is an array of objects, where each object contains:
- invreq_id (hash): The SHA256 hash of all invoice_request fields less than 160.
- active (boolean): Whether the invoice_request is currently active.
- single_use (boolean): Whether the invoice_request will become inactive after we pay an invoice for it.
- bolt12 (string): The bolt12 string starting with lnr.
- used (boolean): Whether the invoice_request has already been used.
- label (string, optional): The label provided when creating the invoice_request.
AUTHOR
Rusty Russell <[email protected]> is mainly responsible.
SEE ALSO
lightning-invoicerequests(7), lightning-disableinvoicerequest(7)
RESOURCES
Main web site: https://github.com/ElementsProject/lightning
EXAMPLES
Example 1:
Request:
lightning-cli listinvoicerequests "a621a0e8e8ea9aa97fd47ab9b140e413be7f4ea45377617e693eb7afe5a3dbf9"
{
"id": "example:listinvoicerequests#1",
"method": "listinvoicerequests",
"params": [
"a621a0e8e8ea9aa97fd47ab9b140e413be7f4ea45377617e693eb7afe5a3dbf9"
]
}
Response:
{
"invoicerequests": [
{
"invreq_id": "a621a0e8e8ea9aa97fd47ab9b140e413be7f4ea45377617e693eb7afe5a3dbf9",
"active": false,
"single_use": true,
"bolt12": "lnr1qqgx5t5hcw5ru9fgkhgxj4thjq4ugzsk2fjhzat9wd6xjmn8ypnx7u3qd9h8vmmfvdj3yyrrd35kw6r5de5kueeqwd6x7un92qsqvgnwgcg35z6ee2h3yczraddm72xrfua9uve2rlrm9deu7xyfzr6jqwvfdqzcyypz6g3kyz34nfrl7lm6c3rushzxey3a55ecjgs6qp2vz8q78j336k0sgpvamrunx5t6vdaeu7nmmlh5u6f0dnscasy2alyxq79f5wnc043gxrzyqt640dmuj7c94644j5ae6wfse7tsejwqnmc575ly9t38h4hf",
"used": false
}
]
}
Example 2:
Request:
lightning-cli listinvoicerequests
{
"id": "example:listinvoicerequests#2",
"method": "listinvoicerequests",
"params": {}
}
Response:
{
"invoicerequests": [
{
"invreq_id": "93f193cd2432d292f8b64af08942989d71c0a0366fb52d57ddb688c8fb066399",
"active": false,
"single_use": true,
"bolt12": "lnr1qqgypua5g7rp293k00s66ayvnv26czst2d5k6urvv5s8getnw3gzqp3zderpzxstt8927ynqg044h0egcd8n5h3n9g0u0v4h8ncc3yg02gps7sjqtqssytfzxcs2xkdy0lml0tzy0jzugmyj8kjn8zfzrgq9fsgurc72x82e7pq947t0ks7a4yejz8w79x4zj25s3pu6zrnw2e0v2ugdescpcqsq307z4p2dlxe92fv7xd43qut0pjkg4y094hupqyhsj8dlhvmmfng6sv",
"used": true
},
{
"invreq_id": "a621a0e8e8ea9aa97fd47ab9b140e413be7f4ea45377617e693eb7afe5a3dbf9",
"active": false,
"single_use": true,
"bolt12": "lnr1qqgx5t5hcw5ru9fgkhgxj4thjq4ugzsk2fjhzat9wd6xjmn8ypnx7u3qd9h8vmmfvdj3yyrrd35kw6r5de5kueeqwd6x7un92qsqvgnwgcg35z6ee2h3yczraddm72xrfua9uve2rlrm9deu7xyfzr6jqwvfdqzcyypz6g3kyz34nfrl7lm6c3rushzxey3a55ecjgs6qp2vz8q78j336k0sgpvamrunx5t6vdaeu7nmmlh5u6f0dnscasy2alyxq79f5wnc043gxrzyqt640dmuj7c94644j5ae6wfse7tsejwqnmc575ly9t38h4hf",
"used": false
}
]
}