Skip to content
CCPEDIAby Unity Nodes
Documentation/Canton Network Docs/Wallet GatewayUser APIView on Canton Network Docs

listNetworks

Wallet GatewayUser APIlistNetworks

User API

listNetworks

POSTJSON-RPC listNetworks

Protocol Details

Inputs

Outputs

result

networksarray[object]required

result

networksarray[object]required

History

Updated1.4.0

description updated

cURL
cURL
curl \
  <JSON_RPC_URL> \
  -H 'content-type: application/json' \
  --data @- <<'EOF'
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "listNetworks"
}
EOF
Resultapplication/json
Result
{
  "networks": [
    {
      "id": "<string>",
      "name": "<string>",
      "description": "<string>",
      "identityProviderId": "<string>",
      "ledgerApi": "<string>",
      "authMethod": "<string>"
    }
  ]
}