GetAccountPhasedTransactions
Returns phased transactions for a specific account.
Request
GET /nxt?requestType=get-account-phased-transactions
All endpoints use port 22024 by default.
Parameters
| Name | Type | Description | Required |
|---|---|---|---|
account | string | Account ID or SHAMWARI address | Yes |
firstIndex | int | Pagination start index | Optional |
lastIndex | int | Pagination end index | Optional |
Response
{
"phasedTransactions": [
{
"hash": "abc123...",
"type": 1,
"subtype": 0,
"timestamp": 123456789,
"height": 250,
"deadline": 14400
}
]
}
Response Fields
| Field | Type | Description |
|---|---|---|
hash | string | Transaction 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 | Unknown account |
Example
curl "http://localhost:22024/nxt?requestType=get-account-phased-transactions&account=SHAMWARI-ABCD-EFGH-IJKL-MNOPQ"