Files
explorer-api/api/schemas/get_account.js
T
Igor Lins e Silva 4047f8cc68 api updates
2020-01-24 15:52:07 -03:00

15 lines
321 B
JavaScript

exports.GET = {
description: 'get account data',
summary: 'get account summary',
tags: ['accounts', 'state'],
querystring: {
type: 'object',
properties: {
"account": {
description: 'account name',
type: 'string'
}
}
}
};