Files
explorer-api/api/schemas/get_transaction.js
T
2019-12-07 00:37:40 -03:00

16 lines
384 B
JavaScript

exports.GET = {
description: 'get all actions belonging to the same transaction',
summary: 'get transaction by id',
tags: ['transactions','history'],
querystring: {
type: 'object',
properties: {
"id": {
description: 'transaction id',
type: 'string'
}
},
required: ["id"]
}
};