Shows threshold list.
## Request Structure
`JSON object:`
```JSON
{
"method": "ledger",
"subcommand": ["list","threshold"],
"arguments": {
"net": "network_name",
"hash": "tx_threshold_hash"
},
"id": "1"
}
```
`Parameters:`
**`net`** - name of the Cellframe Network. The list of networks can be found in the `<Config_dir> \ etc \ network` folder or received using - [[Node Command - NET LIST]]
**`hash`** - hash of the transaction in the threshold `optional`
### Curl Example
`Request:`
```powershell
curl --unix-socket /opt/cellframe-node/var/run/node_cli -X POST http://localhost/connect -d '{
"method": "ledger",
"subcommand": ["list","threshold"],
"arguments": {
"net": "Backbone"
},
"id": "1"
}'
```
`Response:`
```json
{
"type": 2,
"result": [
[
{
"limit": "unlimit"
},
{
"status": "0 items in ledger tx threshold"
}
]
],
"id": 1
}
```