metamaps--metamaps/doc/api/apis/users.raml

27 lines
589 B
Plaintext
Raw Normal View History

2016-10-04 14:24:47 +00:00
#type: collection
get:
is: [ searchable: { searchFields: "name" }, orderable, pageable ]
securedBy: [ null, token, oauth_2_0 ]
2016-10-04 14:24:47 +00:00
responses:
200:
body:
application/json:
example: !include ../examples/users.json
/{id}:
2016-10-04 14:24:47 +00:00
#type: item
securedBy: [ null, token, oauth_2_0 ]
2016-10-04 14:24:47 +00:00
get:
responses:
200:
body:
application/json:
example: !include ../examples/user.json
/current:
2016-10-04 14:24:47 +00:00
#type: item
get:
responses:
200:
body:
application/json:
example: !include ../examples/current_user.json