Skip to content
Documentation/canton-network-docs/Wallet GatewayUser APIView on canton-network-docs
canton-network-docs/Wallet GatewayUser API

listApiKeys

Wallet GatewayUser APIlistApiKeys

User API

listApiKeys

JSON-RPCSince 1.5.0
POSTJSON-RPC listApiKeys

Protocol Details

Inputs

Outputs

result

apiKeysarray[object]required

result

apiKeysarray[object]required
cURL
cURL
curl \
  <JSON_RPC_URL> \
  -H 'content-type: application/json' \
  --data @- <<'EOF'
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "listApiKeys"
}
EOF
Resultapplication/json
Result
{
  "apiKeys": [
    {
      "id": "<string>",
      "name": "<string>",
      "createdAt": "<string>"
    }
  ]
}