curl --request POST \
--url http://localhost:4040/query/receipts/list \
--header 'Content-Type: application/json' \
--data '{
"startTick": 123
}'
{
"startTick": 123,
"endTick": 123,
"receipts": [
{
"txHash": "<string>",
"tick": 123,
"result": {},
"errors": [
"<string>"
]
}
]
}
Get transaction receipts from Cardinal
curl --request POST \
--url http://localhost:4040/query/receipts/list \
--header 'Content-Type: application/json' \
--data '{
"startTick": 123
}'
{
"startTick": 123,
"endTick": 123,
"receipts": [
{
"txHash": "<string>",
"tick": 123,
"result": {},
"errors": [
"<string>"
]
}
]
}
Successful response
The response is of type object
.