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
| Name | Type | Description | Required |
|---|---|---|---|
linkedFullHash | string | Linked transaction full hash | Yes |
Response
{
"phasedTransactions": [
{
"hash": "abc123...",
"linkedFullHash": "def456...",
"type": 1,
"subtype": 0,
"timestamp": 123456789,
"height": 250,
"deadline": 14400
}
]
}
Response Fields
| Field | Type | Description |
|---|---|---|
hash | string | Transaction hash |
linkedFullHash | string | Linked transaction full hash |
type | int | Transaction type |
subtype | int | Transaction subtype |
timestamp | int | Transaction timestamp |
height | int | Block height |
deadline | int | Transaction deadline |
Error Codes
| Code | Description |
|---|---|
| 3 | Not found |
Example
curl "http://localhost:22024/nxt?requestType=get-linked-phased-transactions&linkedFullHash=abc123..."