GetAllPhasingOnlyControls
Retrieves all accounts that have phasing-only control enabled, with optional pagination.
Request
GET /nxt?requestType=getAllPhasingOnlyControls
All endpoints use port 22024 by default.
Parameters
| Name | Type | Description | Required |
|---|---|---|---|
firstIndex | int | Pagination start | No |
lastIndex | int | Pagination end | No |
Response
{
"accounts": [
{
"account": "1234567890123456789",
"accountRS": "SHAMWARI-ABCD-EFGH-IJKL-MNOPQ",
"phasingOnly": true,
"timestamp": 1700000000
}
],
"errorCode": 0,
"errorDescription": ""
}
Example
curl "http://localhost:22024/nxt?requestType=getAllPhasingOnlyControls&firstIndex=0&lastIndex=10"