Skip to main content

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

NameTypeDescriptionRequired
accountstringAccount IDNo
secretPhrasestringSecret passphrase for accountYes*
adminPasswordstringAdmin passwordNo
betaChainstringBeta chain nameNo

*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"