fh-fhc
Version:
A Command Line Interface for FeedHenry
17 lines (16 loc) • 412 B
JavaScript
/* globals i18n */
module.exports = {
'desc' : i18n._('Read a team by id'),
'examples' : [{ cmd : 'fhc admin teams read --id=<id> ', desc : i18n._('Read a team by id')}],
'demand' : ['id'],
'alias' : {
0 : 'id'
},
'describe' : {
'id' : i18n._('A unique identifier for an environment')
},
'url' : function(params) {
return "api/v2/admin/teams/" + params.id;
},
'method' : 'get'
};