Skip to main content

GetLinkedPhasedTransactions

Returns linked phased transactions for a specific transaction full hash.

Request

GET /nxt?requestType=get-linked-phased-transactions

All endpoints use port 22024 by default.

Parameters

NameTypeDescriptionRequired
linkedFullHashstringLinked transaction full hashYes

Response

{
"phasedTransactions": [
{
"hash": "abc123...",
"linkedFullHash": "def456...",
"type": 1,
"subtype": 0,
"timestamp": 123456789,
"height": 250,
"deadline": 14400
}
]
}

Response Fields

FieldTypeDescription
hashstringTransaction hash
linkedFullHashstringLinked transaction full hash
typeintTransaction type
subtypeintTransaction subtype
timestampintTransaction timestamp
heightintBlock height
deadlineintTransaction deadline

Error Codes

CodeDescription
3Not found

Example

curl "http://localhost:22024/nxt?requestType=get-linked-phased-transactions&linkedFullHash=abc123..."