The response follows the [standard format][], with a successful result containing the fields of the Transaction object as well as the following additional fields:
Field
Type
Description
ctid
String
The transaction's compact transaction identifier.
New in: rippled 1.12.0
(Not supported in Clio v2.0 and earlier.) | | date | Number | The close time of the ledger in which the transaction was applied, in [seconds since the Ripple Epoch][]. | | hash | String | The unique [identifying hash][] of the transaction | | inLedger | Number | (Deprecated) Alias for ledger_index. | | ledger_index | Number | The [ledger index][] of the ledger that includes this transaction. | | meta | Object (JSON) or String (binary) | Transaction metadata, which describes the results of the transaction. | | validated | Boolean | If true, this data comes from a validated ledger version; if omitted or set to false, this data is not final. | | (Various) | (Various) | Other fields from the Transaction object |
Not Found Response
If the server does not find the transaction, it returns a txnNotFound error, which could mean two things:
The transaction has not been included in any ledger version, and has not been executed.
The transaction was included in a ledger version that the server does not have available.
This means that a txnNotFound on its own is not enough to know the final outcome of a transaction.
To further narrow down the possibilities, you can provide a range of ledgers to search using the min_ledger and max_ledger fields in the request. If you provide both of those fields, the txnNotFound response includes the following field:
Field
Type
Description
searched_all
Boolean
(Omitted unless the request provided min_ledger and max_ledger) If true, the server was able to search all of the specified ledger versions, and the transaction was in none of them. If false, the server did not have all of the specified ledger versions available, so it is not sure if one of them might contain the transaction.
An example of a txnNotFound response that fully searched a requested range of ledgers: