Skip to main content

GetHoldingShufflings

Retrieves shufflings for a specific holding, optionally filtered by stage.

Request

GET /nxt?requestType=getHoldingShufflings

All endpoints use port 22024 by default.

Parameters

NameTypeDescriptionRequired
holdingstringHolding IDYes
stagebyteShuffling stageNo
includeFinishedbooleanInclude finished shufflingsNo
firstIndexintPagination startNo
lastIndexintPagination endNo

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"