2020-08-26 14:43:56 +02:00
lightning-help -- Command to return all information about RPC commands.
=======================================================================
SYNOPSIS
--------
2022-03-19 14:46:24 +01:00
**help** [*command*]
2020-08-26 14:43:56 +02:00
DESCRIPTION
-----------
2020-09-07 12:46:28 +02:00
The **help** is a RPC command which is possible consult all information about the RPC commands, or a specific command if *command* is given.
Note that the lightning-cli(1) tool will prefer to list a man page when a
specific *command* is specified, and will only return the JSON if the man
page is not found.
2020-08-26 14:43:56 +02:00
EXAMPLE JSON REQUEST
--------------------
```json
{
"id": 82,
"method": "help",
"params": {}
}
```
RETURN VALUE
------------
2021-06-16 03:05:17 +02:00
[comment]: # (GENERATE-FROM-SCHEMA-START)
On success, an object is returned, containing:
2022-09-05 23:33:09 +02:00
2021-06-16 03:05:17 +02:00
- **help** (array of objects):
- **command** (string): the command
- **category** (string): the category for this command (useful for grouping)
- **description** (string): a one-line description of the purpose of this command
- **verbose** (string): a full description of this command (including whether it's deprecated)
2021-09-03 12:07:59 +02:00
2021-06-16 03:05:17 +02:00
[comment]: # (GENERATE-FROM-SCHEMA-END)
2020-08-26 14:43:56 +02:00
On failure, one of the following error codes may be returned:
2020-08-31 14:42:28 +02:00
- -32602: Error in given parameters.
2020-08-26 14:43:56 +02:00
EXAMPLE JSON RESPONSE
---------------------
```json
{
"help": [
{
"command": "autocleaninvoice [cycle_seconds] [expired_by]",
"category": "plugin",
"description": "Set up autoclean of expired invoices. ",
"verbose": "Perform cleanup every {cycle_seconds} (default 3600), or disable autoclean if 0. Clean up expired invoices that have expired for {expired_by} seconds (default 86400). "
}
]
}
```
AUTHOR
------
Vincenzo Palazzo < < vincenzo.palazzo @ protonmail . com > > wrote the initial version of this man page, but many others did the hard work of actually implementing this rpc command.
RESOURCES
---------
Main web site: < https: / / github . com / ElementsProject / lightning >
2022-12-09 08:10:12 +01:00
2023-01-30 07:24:16 +01:00
[comment]: # ( SHA256STAMP:0a8b0e715ffbe4a43bd034485306e54f3eab7f2151532ea3a67fef38fee5932c)