16 lines
384 B
JavaScript
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"]
|
|
}
|
|
};
|