GetHoldingShufflings
Retrieves shufflings for a specific holding, optionally filtered by stage.
Request
GET /nxt?requestType=getHoldingShufflings
All endpoints use port 22024 by default.
Parameters
| Name | Type | Description | Required |
|---|---|---|---|
holding | string | Holding ID | Yes |
stage | byte | Shuffling stage | No |
includeFinished | boolean | Include finished shufflings | No |
firstIndex | int | Pagination start | No |
lastIndex | int | Pagination end | No |
Response
{
"shufflings": [
{
"shufflingFullHash": "abc123...",
"holding": "1234567890123456789",
"holdingType": 1,
"amount": 100000000,
"participantCount": 3,
"stage": "REGISTRATION",
"assigneeAccount": "1234567890123456789",
"assigneeAccountRS": "SHAMWARI-ABCD-EFGH-IJKL-MNOPQ"
}
],
"errorCode": 0,
"errorDescription": ""
}
Example
curl "http://localhost:22024/nxt?requestType=getHoldingShufflings&holding=1234567890123456789"