Sets minimum quantity of required validators for [[ESBOCS Consensus]] work in the network.
## Request Structure
`JSON object:`
```JSON
{
"method": "esbocs",
"subcommand": ["min_validators_count", "set"],
"arguments": {
"net": "network_name",
"chain": "chain_name",
"cert": "poa_cert_name",
"val_count": "value"
},
"id": "1"
}
```
`Parameters:`
**`net (network_name)`** - 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]]
**`chain`** - name of the chain `optional`
**`cert`** - name of the **root node** certificate
**`val_count`** - quantity of validators required for consensus work
### Curl Example
`Request:`
```actionscript
curl --unix-socket /opt/cellframe-node/var/run/node_cli -X POST http://localhost/connect -d '{
"method": "esbocs",
"subcommand": ["min_validators_count","set"],
"arguments": {
"net": "riemann",
"cert": "riemann.root.pvt.0",
"val": "4"
},
"id": "1"
}'
```
`Response:`
```json
{
"type": 2,
"result": [
{
"status": "Minimum validators count has been set",
"decree hash": "0xBA611E933C17CB35147DE87F20AF1316F4FA6560BB6BB229C36A1FCD8B6452B6"
}
],
"errors": null,
"id": 1
}
```