Deactivates wallet protection. ## Request Structure `JSON object:` ```JSON { "method": "wallet", "subcommand": ["deactivate"], "arguments": { "w": "wallet_name", "password": "password" }, "id": "1" } ``` `Parameters:` **`w`** - name of the wallet **`password`** - wallet password ### Curl Example `Request:` ```actionscript curl --unix-socket /opt/cellframe-node/var/run/node_cli -X POST http://localhost/connect -d ' { "method": "wallet", "subcommand": ["deactivate"], "arguments": { "w": "testwallet", "password": "1234" }, "id": "1" }' ``` `Response:` ```json { "type": 2, "result": [ [ { "Wallet name": "testwallet", "protection": "is deactivated" } ] ], "id": 1 } ```