Lists [[Proof of Authority (PoA)|PoA]] cerificates for this network.
## Request Structure
`JSON object:`
```JSON
{
"method": "net",
"subcommand": ["poa_certs","list"],
"arguments": {
"net": "network_name"
},
"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]]
### Curl Example
`Request:`
```powershell
curl --unix-socket /opt/cellframe-node/var/run/node_cli -X POST http://localhost/connect -d '{
"method": "net",
"subcommand": ["poa_certs","list"],
"arguments": {
"net": "Backbone"
},
"id": "1"
}'
```
`Response:`
```json
{
"type": 2,
"result": [
{
"poa_certs": [
"0xCB73427D1124F5EA8068EEFA5AEC91D37888561ED43E737AFD0D08A07BE67809",
"0x3B244B31B4DC6DD7791FE34A67712BDD7647648BB9089D0266A6CC245AF70DE4",
"0x16CE0C102C4288EB9816D0A411809424DB6D909DDDEFD5D67EF38F177DAF6511",
"0xA3BCEB808E3870B539CA835C711B9290765587A1A81DF6829CC37511EF3C6A5F",
"0xC86097F89235528299547068958B2F3625A655B4FE89301E17625930F222FFE2"
]
}
],
"id": 1
}
```