readTransaction
GET/api/v1/transactions/
Get a list of Transaction
Request
Query Parameters
limit integerrequired
Possible values: >= 1
and <= 100
Default value: 10
offset integerrequired
Default value: 0
Responses
- 200
Default Response
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
error booleanrequired
Possible values: [false
]
statusCode numberrequired
Possible values: [200
]
total numberrequired
data object[]required
id stringrequired
hash stringrequired
from stringrequired
to stringrequired
value stringrequired
blockchainId integerrequired
vaultId stringrequired
contractId stringrequired
status stringrequired
Possible values: [TO_BE_SENT
, FAILED_TO_SEND
, SENT
, CONFIRMED
, FAILED
]
{
"error": false,
"statusCode": 200,
"total": 0,
"data": [
{
"id": "string",
"hash": "string",
"from": "string",
"to": "string",
"value": "string",
"blockchainId": 0,
"vaultId": "string",
"contractId": "string",
"status": "TO_BE_SENT"
}
]
}
Loading...