StopBinder
Stops binders for a specific account, beta chain, or all binders.
Request
POST /nxt?requestType=stopBinder
All endpoints use port 22024 by default.
Parameters
| Name | Type | Description | Required |
|---|---|---|---|
account | string | Account ID | No |
secretPhrase | string | Secret passphrase for account | Yes* |
adminPassword | string | Admin password | No |
betaChain | string | Beta chain name | No |
*Required if account is specified and secretPhrase auth is used.
Response
Stop specific account binder:
{
"stoppedBinder": true,
"errorCode": 0,
"errorDescription": ""
}
Stop all account binders:
{
"stoppedAccountBinders": true,
"errorCode": 0,
"errorDescription": ""
}
Stop beta chain binders:
{
"stoppedBetaChainBinders": true,
"errorCode": 0,
"errorDescription": ""
}
Example
curl -X POST "http://localhost:22024/nxt?requestType=stopBinder" \
-d "account=1234567890123456789" \
-d "secretPhrase=your_secret_passphrase"